From: Sunil S. <sh...@bo...> - 2007-02-22 10:31:47
|
Quoting from Ivan Imperl's mail on Wed, Feb 21, 2007: > set postmaster "iva" > # set nobouncemail > set no spambounce > set properties "" > > poll pop3.ourisp.net with proto POP3: ... > Now to the problem. Recently we started to receive a lot of (large) mail > that is for the users that do not exist (do not have accounts) on local > mail server. Since this takes a lot of dial-up time, I was wondering if > there is a possibility for fetchmail to delete such mail. In pop3 protocol, fetchmail does not download the mail headers and body separately. This is because, the pop3 protocol does not allow download of the body of a mail separately. So, even if the mail has been refused, fetchmail still downloads the rest of the body. To avoid downloading the body, you will have to: - use imap instead of pop3, - set postmaster to "" (empty). Note that if you set postmaster to "", you may not get any notifications from fetchmail. -- Sunil Shetye. |