diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2009-05-24 14:45:17 +0000 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2009-05-24 14:45:17 +0000 |
commit | 570e3ef1831cdb13a1baf846029ffa1cb7ec1b79 (patch) | |
tree | dd13bcd23351a7ac931457b9535a2b670dc9dda8 /fetchmail.h | |
parent | c74e0b613d3d4782a7ad34af1f9e14ebb3776e1b (diff) | |
download | fetchmail-570e3ef1831cdb13a1baf846029ffa1cb7ec1b79.tar.gz fetchmail-570e3ef1831cdb13a1baf846029ffa1cb7ec1b79.tar.bz2 fetchmail-570e3ef1831cdb13a1baf846029ffa1cb7ec1b79.zip |
Treat permanent delivery errors as temporary (configurable).
Fetchmail no longer drops permanently undelivered messages by default,
to match historic documentation. It does this by adding a new
"softbounce" option, see below.
Fixes Debian Bug#471283, demotes Debian Bug#494418 to wishlist.
There is a new "softbounce" global option that prevents the deletion of
messages that have not been forwarded. It defaults to "true" for
fetchmail 6.3.X in order to match historic documentation. This may
change its default in the next major release.
NOTE: untested.
svn path=/branches/BRANCH_6-3/; revision=5315
Diffstat (limited to 'fetchmail.h')
-rw-r--r-- | fetchmail.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fetchmail.h b/fetchmail.h index bb3b09bf..afbf0d72 100644 --- a/fetchmail.h +++ b/fetchmail.h @@ -180,6 +180,7 @@ struct runctl int poll_interval; /** poll interval in seconds (daemon mode, 0 == off) */ flag bouncemail; flag spambounce; + flag softbounce; flag use_syslog; flag invisible; flag showdots; |