diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2008-02-22 13:57:36 +0000 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2008-02-22 13:57:36 +0000 |
commit | 2a3e33da0669bdfaef9c67d494a01c401ddcec07 (patch) | |
tree | b8b169f298c27db580c494265211dee943e01156 | |
parent | ae38ee2cc8207d41b7375744fc511619ae67ff19 (diff) | |
download | fetchmail-2a3e33da0669bdfaef9c67d494a01c401ddcec07.tar.gz fetchmail-2a3e33da0669bdfaef9c67d494a01c401ddcec07.tar.bz2 fetchmail-2a3e33da0669bdfaef9c67d494a01c401ddcec07.zip |
add two SHOULD items for 6.3.9
svn path=/branches/BRANCH_6-3/; revision=5158
-rw-r--r-- | TODO.txt | 3 | ||||
-rw-r--r-- | fetchmail.c | 4 |
2 files changed, 7 insertions, 0 deletions
@@ -6,6 +6,9 @@ soon - MUST: - publish SA-2007-02 after release soon - SHOULD: +- allow \Deleted without \Seen, rf. + http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=466299 +- document IMAP4 ACL requirements - log configured server name on certificate mismatch (perhaps pay attention to via entries and stuff like that) - BerliOS Bug #11576, thread on fetchmail users "Invalid SSL certificate" by diff --git a/fetchmail.c b/fetchmail.c index 7abdb1e0..367070e6 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -608,6 +608,10 @@ int main(int argc, char **argv) /* here's the exclusion lock */ fm_lock_or_die(); + if (check_only && outlevel >= O_VERBOSE) { + report(stdout, GT_("--check mode enabled, not fetching mail\n")); + } + /* * Query all hosts. If there's only one, the error return will * reflect the status of that transaction. |