From: Matthias A. <mat...@gm...> - 2006-05-31 02:12:46
|
Filippo Santovito <fil...@em...> writes: > Hi all, > I have a remote pop account (remote@popserver) that I need to duplicate into > two local mail spool (account1@local, account2@local); > I tried with: > > ############################################# > poll popserver with proto POP3 > user 'remote@popserver' there with password 'xxxx' is 'account1' here options > fetchall ssl > > poll popserver with proto POP3 > user 'remote@popserver' there with password 'xxxx' is 'account2' here options > fetchall ssl nokeep > ############################################# > > but only account1 spool is created and filled with emails. > How can I duplicate the remote account? If the local machine has a sendmail-compatible sendmail command (Postfix, Exim also count here), try: poll popserver with proto POP3 user 'remote@popserver' there with password 'xxxx' options fetchall ssl mda '/usr/sbin/sendmail -i -f %F -- account1 account2' Just be sure none of account1 and account2 forward back onto remote@popserver. Note that mda has some other implications -- see the man page. -- Matthias Andree |