aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* OpenSSL: permit deprecated features,Matthias Andree2021-03-132-1/+7
| | | | to avoid compatibility issues with new OpenSSL versions later on.
* fetchmail.man: add missing word (minor change).Matthias Andree2021-03-131-2/+2
|
* .gitignore push.shMatthias Andree2021-03-131-0/+1
|
* Shorten some user setting texts to avoid truncation.Matthias Andree2021-03-131-2/+2
|
* Mention fetchmailconf regression fix.Matthias Andree2021-03-131-0/+13
|
* fetchmailconf: robustness fixesMatthias Andree2021-03-131-13/+22
| | | | | Make sure fetchmailconf -V can complete without finding fetchmail or Tkinter. Make sure fetchmailconf -d can complete without Tkinter.
* fetchmailconf: Add sslcertfile to typemap.Matthias Andree2021-03-131-0/+1
|
* tls-aux.c: Fix comments.Matthias Andree2021-03-071-7/+6
|
* fixupMatthias Andree2021-03-071-4/+4
|
* website: update NEWS for 6.4.17 release.Matthias Andree2021-03-071-4/+4
|
* Record po state for 6.4.17.Matthias Andree2021-03-0720-8605/+14942
|
* Prepare 6.4.17 release.Matthias Andree2021-03-071-1/+1
|
* getstats.py: count *.py files, tooMatthias Andree2021-03-072-1/+2
|
* NEWS: mention fetchmailconf's printing Python version.Matthias Andree2021-03-071-0/+1
|
* fetchmailconf.py: Bump version and copyright.Matthias Andree2021-03-071-2/+2
|
* fetchmailconf --version: print Python version, too.Matthias Andree2021-03-071-0/+1
|
* Mention pkg-config needed.Matthias Andree2021-03-071-1/+2
| | | | | if pkg-config is missing, auto(re)conf emits misleading error messages.
* socket.c clean up code duplication.Matthias Andree2021-02-271-2/+2
|
* imap.c revise comment on timeout memory leak if auto (non-static) password ↵Matthias Andree2021-02-141-1/+1
| | | | buffer is used for LOGIN
* imap.c: fix memory leak in timeout situation for LOGIN authMatthias Andree2021-02-142-3/+9
| | | | | ...which uses siglongjmp() so that gen_transact() will not return. Note, just in case, this uses local static buffers and is not thread-safe.
* fetchmail.man: tell user to add --ssl for TLS-wrapped portsMatthias Andree2021-02-142-1/+10
|
* Bump version to 6.4.17 for next release.Matthias Andree2021-02-112-2/+2
|
* makerelease.pl: Fix sourceforge.net URL in ANNOUNCE.EMAIL.Matthias Andree2021-02-101-3/+3
|
* Credit Takeshi Hamasaki/Japanese translation.Matthias Andree2021-02-091-20/+26
|
* Update <ja> Japanese translation to fetchmail 6.4.16-rc1Takeshi Hamasaki2021-02-091-460/+740
|
* Record 6.4.16 state.Matthias Andree2021-02-089-2218/+866
|
* NEWS: credit translators.Matthias Andree2021-02-031-1/+1
|
* Update <fr> French translation to fetchmail-6.4.16-rc1Frédéric Marchal2021-02-031-482/+802
|
* NEWS: credit translators.Matthias Andree2021-01-311-1/+11
|
* Update <sv> Swedish translation to fetchmail 6.4.16-rc1Göran Uddeborg2021-01-311-432/+663
|
* Update <sq> Albanian translation to fetchmail-6.4.16-rc1Besnik Bleta2021-01-311-449/+713
|
* Update <pl> Polish translation to fetchmail 6.4.16-rc1Jakub Bogusz2021-01-311-456/+728
|
* Update <eo> Esperanto translation to fetchmail 6.4.16-rc1Keith Bowes2021-01-311-434/+647
|
* Update <cs> Czech translation to fetchmail 6.4.16-rc1Petr Pisar2021-01-311-427/+647
|
* po/: updated po files after template (pot) update.Matthias Andree2021-01-3019-17385/+10629
|
* po/ - updated pot (PO template)Matthias Andree2021-01-3019-10629/+17385
|
* po/de.po: Update German translation to 6.4.16-rc1.Matthias Andree2021-01-301-292/+321
|
* configure.ac: don't call AC_LIB_LINKFLAGS --without-sslMatthias Andree2021-01-302-1/+3
|
* Proper line break for hostname qualification errors.Matthias Andree2021-01-301-2/+1
|
* --version: print OpenSSL versions build/run-time and directoriesMatthias Andree2021-01-305-9/+43
|
* manual: minor cleanupsMatthias Andree2021-01-301-4/+4
|
* configure.ac: Bump version to 6.4.16-rc1.Matthias Andree2021-01-301-1/+1
|
* manual: add PREFACE, add ENVIRONMENT intro, fix missing word in HOME env doc.Matthias Andree2021-01-301-1/+24
|
* NEWS: Whitespace fix.Matthias Andree2021-01-301-1/+1
|
* --version: print default cert paths, and document SSL_CERT_* in manpageMatthias Andree2021-01-305-3/+41
| | | | | | | | | When Gene Heskett was updating his OpenSSL on Debian oldstable, we figured that it might be helpful to print where OpenSSL goes look for the trusted certificate. Add this information. Also add documentation of OpenSSL's SSL_CERT_DIR/SSL_CERT_FILE environment variables.
* fetchmail.man: correct and extend duplicate-suppression behaviorMatthias Andree2021-01-302-4/+34
| | | | | | | | | This was found by Julian Bane debugging a situation where duplicate suppression did not kick in (due to envelope-recording headers, X-Original-To, Delivered-To). Historic behavior now documented in fetchmail.man and NEWS in order to reduce confusion. Gitlab, fixes issue #29.
* tls-aux.c: add helper to obtain default cert pathsMatthias Andree2021-01-304-2/+68
| | | | | | | | | | | ...and compile it as standalone test program. After "make check", you can check t.tls-aux.log in the build area for the defaults. Note that environment overrides can be made, see SSL_CTX_set_default_verify_paths(3) or, for instance, https://www.openssl.org/docs/man1.1.1/man3/SSL_CTX_set_default_verify_paths.html OpenSSL 3.x may ship an openssl-env(7) manual page.
* Add support for sslcertfile.Matthias Andree2021-01-032-8/+21
| | | | (cherry picked from commit 204541b6d2ccdbd2111e346f47fd69316ed3ef7d)
* [conf] Print sslcertfile in configurationEarl2021-01-031-0/+1
|
* NEWS: add one fix for 6.4.3 and give one Debian Bug ref.Matthias Andree2021-01-031-1/+2
| | | | | | | Mention 6.4.3 esmtpname/esmtppassword fix. Found while reviewing Earl Chew's same fix on 'next' branch. Reference MDA single-quoting issue by Debian Bug#347909 id.