I have procmail installed and working with fetchmail.<br>There is only one problem...<br><br>If I have more than one email in the To: or CC: fileds and both these email addrresses are supposed to go to two different folders... they do not... both email go to the same folder...
<br><br>How do I setup .procmailrc so that it parses the entire To: or CC: fileds first before moving them to a directory?<br><br>In the example below if an email has both support and user1 in CC: or To: fileds I will get two emails in the support directory....however if there is only one email address in the To: or CC: fileds the emails will go to the appropriate directory... any help would be great.
<br><br>Here is my .procmailrc file<br><br><pre>MAILDIR=$HOME/mail<br></pre>LOGFILE=/var/log/procmail.log<br>#VERBOSE=yes<br><br>:0<br>* ^From:.*postmaster@fakeemail.com*<br>/dev/null<br><br>:0<br>* ^TOsupport@<br>$MAILDIR/support
<br><br>:0<br>* ^TOuser1@<br>$MAILDIR/friends<br><br>