Help for this page

Select Code to Download


  1. or download this
    # SAMPLE ~/.procmailrc
    MAILDIR=$HOME/.Mail
    PMDIR=$HOME/.procmail
    ...
    spam/ archive/spam/
    
    DEFAULT=$MAILDIR/spam
    
  2. or download this
    # SAMPLE crontab entry
    0 0 * * * $HOME/.procmail/write_greenlist
    
  3. or download this
    #!/home/josh/perl5.8.3/bin/perl
    use strict;
    use warnings;
    ...
        my %c;
        return grep !$c{$_}++, @_;
    }