From: Matthias A. <mat...@gm...> - 2010-10-12 21:28:37
|
Am 12.10.2010 19:40, schrieb Jeffrey Shawn McKinzie: > Good news. I was not able to download the test version with the link > you send. (seemed to just hang) The website uses a redirector and works for me - does your downloader follow redirects? It needs to. > but I did download and install 6.3.18 > which took care of most of my issues. > > Mail is now being routed as I want except for the last "wildcard" entry, > "* is jeffklotz.com here" those fail to find a local match and go to > postmaster. Is the syntax I'm using for that last entry correct? Do I > need to add the additional domain to the AKA? should I use a "=" rather > than "is"? > > poll "pop.secureserver.net" protocol POP3 interval 1 > envelope 1 Received > no dns aka secureserver.net mydogbosco.com > user "**********@mydogbosco.com" password "**********" > to je...@my...=je...@je... > jk...@my...=je...@je... > * is jeffklotz.com here fetchall rewrite Any logs? The wildcard maps external users to the same users in your local domain. The "is jeffklotz.com here" is actually just appended to the to list, but cancels the prior wildcard, so fetchmail reads this as: ... user "**********@mydogbosco.com" password "**********" to je...@my...=je...@je... jk...@my...=je...@je... jeffklotz.com here fetchall rewrite Solutions depend on what you're trying to achieve: 1. if you want all unlisted addresses 1:1, i. e. fo...@my... as foo@localhost, then just remove the "is". Note that "jeffklotz.com" will be considered a remote user name recognized, and is redundant with "*". 2. if you instead want all other mail (not explicitly listed) to go to jeffklotz.com, remove the "is jeffklotz.com" part, and write, before the poll, a line: set postmaster jeffklotz.com Fetchmail should probably complain about multiple mapping lists in the configuration... -- Matthias Andree |