| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
|
|
|
| |
Exchange 2007 wedges if we try GSSAPI authentication and fail for lack of
suitable credentails (for instance, because the user did not run kinit).
Only try GSSAPI automatically if we have credentials.
Reported by Patrick Rynhart, Debian Bug #568455,
and Alan Murrell, to the fetchmail-users list.
|
| |
|
| |
|
| |
|
|
|
|
| |
and always load the default X.509 trust stores, unless the latter is set.
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
| |
...that were converted to char* when they should have been converted to
const char *.
Use braces for empty if/else statements.
|
|
|
|
| |
to resolve an ambiguity found by Frédéric Marchal.
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The IMAP client no longer skips messages from several IMAP servers including
Dovecot if fetchmail's "idle" is in use. Causes were that fetchmail (a)
ignored some untagged responses when it should not (b) relied on EXISTS
messages in response to EXPUNGE, which aren't mandated by RFC-3501 (the IMAP
standard) and aren't sent by Dovecot either.
Fix by Sunil Shetye (the fix also consolidates IMAP response handling,
improving overall robustness of the IMAP client), bug report and testing by
Matt Doran, with further hints from Timo Sirainen.
svn path=/branches/BRANCH_6-3/; revision=5459
|
|
|
|
| |
svn path=/branches/BRANCH_6-3/; revision=5390
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Progress tickers had been used inconsistently for a long time, and
documentation was outdated, too. Factor out common code to ease
maintenance, use the report_flush() function, and add and use a macro
(want_progress()) to determine if progress ticker output is desired.
This makes for a much more consistent look on screen and in logfiles and
should be much easier to fix later on.
TODO: test syslog output.
svn path=/branches/BRANCH_6-3/; revision=5290
|
|
|
|
| |
svn path=/branches/BRANCH_6-3/; revision=5289
|
|
|
|
|
|
|
|
| |
Exception from no-features policy on 6.3.X is made to keep people away from
doing more dangerous things in order to get rid of CommonName mismatch
warnings.
svn path=/branches/BRANCH_6-3/; revision=5165
|
|
|
|
|
|
| |
prone to symlink attacks. Found by Nico Golde.
svn path=/branches/BRANCH_6-3/; revision=5134
|
|
|
|
|
|
| |
Leurent-style MITM attacks which are based on MD5 and APOP weaknesses.
svn path=/branches/BRANCH_6-3/; revision=5057
|
|
|
|
| |
svn path=/branches/BRANCH_6-3/; revision=4991
|
|
|
|
| |
svn path=/branches/BRANCH_6-3/; revision=4962
|
|
|
|
| |
svn path=/branches/BRANCH_6-3/; revision=4924
|
|
|
|
| |
svn path=/branches/BRANCH_6-3/; revision=4911
|
|
|
|
|
|
|
| |
Courtesy of Götz 'nimrill' Babin-Ebell.
This patch also makes --sslproto arguments case insensitive.
svn path=/branches/BRANCH_6-3/; revision=4896
|
|
|
|
|
|
| |
Also wrap freeaddrinfo() without added functionality.
svn path=/branches/BRANCH_6-3/; revision=4895
|
|
|
|
| |
svn path=/branches/BRANCH_6-3/; revision=4891
|
|
|
|
|
|
| |
This might fix Debian Bug#294547 and Bug#377135.
svn path=/branches/BRANCH_6-3/; revision=4880
|
|
|
|
| |
svn path=/branches/BRANCH_6-3/; revision=4843
|
|
|
|
| |
svn path=/branches/BRANCH_6-3/; revision=4841
|
|
|
|
| |
svn path=/branches/BRANCH_6-3/; revision=4770
|
|
|
|
|
|
| |
Reported by Terry Brown.
svn path=/branches/BRANCH_6-3/; revision=4764
|
|
|
|
| |
svn path=/branches/BRANCH_6-3/; revision=4743
|
|
|
|
| |
svn path=/branches/BRANCH_6-3/; revision=4736
|
|
|
|
| |
svn path=/branches/BRANCH_6-3/; revision=4734
|
|
|
|
| |
svn path=/branches/BRANCH_6-3/; revision=4733
|
|
|
|
|
|
| |
Make MD5Update argument const.
svn path=/branches/BRANCH_6-3/; revision=4621
|
|
|
|
|
|
| |
in daemon mode.
svn path=/branches/BRANCH_6-3/; revision=4613
|
|
|
|
|
|
|
|
|
| |
- switch back to SMTP after having tried LMTP hosts (multiple smtphost hosts)
- switch back to LMTP after sending a bounce.
The patch removes the global state variable that was the root of this problem.
Patch by Sunil Shetye.
svn path=/branches/BRANCH_6-3/; revision=4581
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
1. parsed_host is not freed in some cases. This happens when the first
smtp server is down in this setup:
poll mailserver
...
smtphost "smtpserver1" "smtpserver2"
...
2. parsed_host is being initialized for UNIX socket also. For UNIX
socket, parsed_host should be NULL.
3. If EHLO fails on a UNIX socket, it tries HELO on a network socket!
4. ctl->destaddr is allocated memory in two cases. This memory is
never freed.
5. ctl->destaddr was being assigned in a very convoluted manner.
Since, parsed_host is already set correctly now, it can be used
directly.
svn path=/trunk/; revision=4443
|
|
|
|
| |
svn path=/trunk/; revision=4398
|
|
|
|
| |
svn path=/trunk/; revision=4394
|
|
|
|
|
|
| |
if fetchmail should exit if it cannot resolve (canonicalize) its own hostname.
svn path=/trunk/; revision=4381
|
|
|
|
|
|
|
|
|
|
|
| |
Dr. Andreas Krüger.
- cleanup --quit handling again (so that --silent --quit just kills the
existing daemon, rather than continue running), and document it more
clearly.
- Print an error message if multiple "defaults" records are found in the
configuration file.
svn path=/trunk/; revision=4372
|
|
|
|
|
|
| |
to keep clear of ctype.h namespace.
svn path=/trunk/; revision=4322
|
|
|
|
|
|
| |
Fix IMAP expunged message counting. Sunil Shetye.
svn path=/trunk/; revision=4301
|
|
|
|
| |
svn path=/trunk/; revision=4297
|
|
|
|
| |
svn path=/trunk/; revision=4289
|
|
|
|
| |
svn path=/trunk/; revision=4280
|