Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | socket.c: SSL_use_PrivateKey_file <- SSL_use_RSAPrivateKey_file, | Matthias Andree | 2021-03-13 | 1 | -1/+4 |
| | | | | | the latter is deprecated in OpenSSL 3, and the user might use some other key than RSA. | ||||
* | OpenSSL: permit deprecated features, | Matthias Andree | 2021-03-13 | 1 | -0/+2 |
| | | | | to avoid compatibility issues with new OpenSSL versions later on. | ||||
* | Mention fetchmailconf regression fix. | Matthias Andree | 2021-03-13 | 1 | -0/+13 |
| | |||||
* | Prepare 6.4.17 release. | Matthias Andree | 2021-03-07 | 1 | -1/+1 |
| | |||||
* | getstats.py: count *.py files, too | Matthias Andree | 2021-03-07 | 1 | -0/+1 |
| | |||||
* | NEWS: mention fetchmailconf's printing Python version. | Matthias Andree | 2021-03-07 | 1 | -0/+1 |
| | |||||
* | imap.c: fix memory leak in timeout situation for LOGIN auth | Matthias Andree | 2021-02-14 | 1 | -0/+4 |
| | | | | | ...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 ports | Matthias Andree | 2021-02-14 | 1 | -0/+4 |
| | |||||
* | Credit Takeshi Hamasaki/Japanese translation. | Matthias Andree | 2021-02-09 | 1 | -20/+26 |
| | |||||
* | Record 6.4.16 state. | Matthias Andree | 2021-02-08 | 1 | -1/+1 |
| | |||||
* | NEWS: credit translators. | Matthias Andree | 2021-02-03 | 1 | -1/+1 |
| | |||||
* | NEWS: credit translators. | Matthias Andree | 2021-01-31 | 1 | -1/+11 |
| | |||||
* | configure.ac: don't call AC_LIB_LINKFLAGS --without-ssl | Matthias Andree | 2021-01-30 | 1 | -0/+2 |
| | |||||
* | --version: print OpenSSL versions build/run-time and directories | Matthias Andree | 2021-01-30 | 1 | -0/+3 |
| | |||||
* | NEWS: Whitespace fix. | Matthias Andree | 2021-01-30 | 1 | -1/+1 |
| | |||||
* | --version: print default cert paths, and document SSL_CERT_* in manpage | Matthias Andree | 2021-01-30 | 1 | -0/+13 |
| | | | | | | | | | 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 behavior | Matthias Andree | 2021-01-30 | 1 | -0/+10 |
| | | | | | | | | | 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. | ||||
* | Add support for sslcertfile. | Matthias Andree | 2021-01-03 | 1 | -6/+14 |
| | | | | (cherry picked from commit 204541b6d2ccdbd2111e346f47fd69316ed3ef7d) | ||||
* | NEWS: add one fix for 6.4.3 and give one Debian Bug ref. | Matthias Andree | 2021-01-03 | 1 | -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. | ||||
* | NEWS: Prepare for release of 6.4.15. | Matthias Andree | 2021-01-03 | 1 | -6/+7 |
| | |||||
* | NEWS: Mention Earl Chew's SMTP AUTH PLAIN truncation fix. | Matthias Andree | 2021-01-03 | 1 | -1/+3 |
| | | | | Cherry-picked from 'next' branch, 895b4748. | ||||
* | configure.ac: fix cross-compilation with openssl | Fabrice Fontaine | 2021-01-03 | 1 | -0/+1 |
| | | | | | | | | | | | | | | | | | | | | | Since commit ca372c2c4fd4fa18cf035087203069e412adfa00, cross-compilation fails on: /data/buildroot-test/instance-0/output-1/host/bin/powerpc-linux-gcc -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -Os -I/data/buildroot-test/instance-0/output-1/host/powerpc-buildroot-linux-uclibc/sysroot/usr/include -I/usr/kerberos/include -L/data/buildroot-test/instance-0/output-1/host/powerpc-buildroot-linux-uclibc/sysroot/usr/lib -o fetchmail socket.o getpass.o fetchmail.o env.o idle.o options.o daemon.o driver.o transact.o sink.o smtp.o idlist.o uid.o mxget.o md5ify.o cram.o gssapi.o opie.o interface.o netrc.o unmime.o conf.o checkalias.o uid_db.o lock.o rcfile_l.o rcfile_y.o ucs/norm_charmap.o fm_realpath.o pop3.o imap.o etrn.o odmr.o libfm.a -lintl -L/data/buildroot-test/instance-0/output-1/host/bin/../powerpc-buildroot-linux-uclibc/sysroot/usr/lib -lssl -lcrypto /usr/lib/libssl.so /usr/lib/libcrypto.so /usr/lib/libcrypto.so /data/buildroot-test/instance-0/output-1/host/opt/ext-toolchain/bin/../lib/gcc/powerpc-buildroot-linux-uclibc/8.3.0/../../../../powerpc-buildroot-linux-uclibc/bin/ld: /usr/lib/libssl.so: error adding symbols: file in wrong format This build failure is raised because pkg-config values are overriden by AC_LIB_LINKFLAGS which can pull libraries from the host. So, don't unconditionally call AC_LIB_LINKFLAGS when cross-compiling. It should be noted that AC_LIB_LINKFLAGS is used as a fallback of case pkg-config since commit c92eb3c1895f10a9a4d3229ac883071b62db3920. Fixes: - http://autobuild.buildroot.org/results/1b24f0ada47ca1913321d148981364ce513465ac Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Merge request !23. | ||||
* | manpage: disouraged -> discouraged | Matthias Andree | 2020-12-15 | 1 | -1/+6 |
| | | | | Reported by David McKelvie on fetchmail-users today. | ||||
* | NEWS: record 6.4.14 release date | Matthias Andree | 2020-11-26 | 1 | -1/+1 |
| | |||||
* | Add romanization for Miroslav Nikolic's Cyrillic name. | Matthias Andree | 2020-11-14 | 1 | -1/+1 |
| | |||||
* | Mention Serbian translation update. | Matthias Andree | 2020-11-08 | 1 | -20/+26 |
| | |||||
* | Label for release. | Matthias Andree | 2020-10-25 | 1 | -1/+1 |
| | |||||
* | Mention Esperanto [eo] translation, courtesy of Keith Bowes. | Matthias Andree | 2020-10-21 | 1 | -0/+1 |
| | |||||
* | Credit translator for French. | Matthias Andree | 2020-10-16 | 1 | -0/+1 |
| | |||||
* | Fix double mention of German translation. | Matthias Andree | 2020-10-15 | 1 | -1/+1 |
| | |||||
* | Credit translators. | Matthias Andree | 2020-10-15 | 1 | -0/+9 |
| | |||||
* | pidfile/lockfile handling bugfixes | Matthias Andree | 2020-10-13 | 1 | -4/+22 |
| | | | | | | | | | | | pidfile/locking: log errors thru syslog, too This works by replacing perror()/fprintf(stderr, ...) by report() and strerror(). If the pidfile cannot be unlinked, truncate it. Bump release version to 6.4.13.rc1, and move KNOWN BUGS section up in NEWS. | ||||
* | NEWS: move KNOWN BUGS... section up. | Matthias Andree | 2020-09-04 | 1 | -8/+8 |
| | |||||
* | Prepare 6.4.12. | Matthias Andree | 2020-09-04 | 1 | -0/+8 |
| | |||||
* | regression fix: check for TLS v1.2/1.3 support with libssl.so | Matthias Andree | 2020-08-28 | 1 | -3/+10 |
| | | | | | | When AC_LIB_LINKFLAGS came up with, for instance, /usr/lib/libssl.so, configure.ac failed to check for TLS v1.2 and TLS v1.3 support in the SSL library, disabling explicit TLS v1.2 and v1.3 support. | ||||
* | Prepare 6.4.10. | Matthias Andree | 2020-08-27 | 1 | -21/+29 |
| | |||||
* | NEWS: announce Romanian translation. | Matthias Andree | 2020-08-27 | 1 | -0/+3 |
| | |||||
* | NEWS: mention MD5 mention in manpage in commit cddf65c3 | Matthias Andree | 2020-08-27 | 1 | -0/+3 |
| | |||||
* | configure: try AC_LIB_LINKFLAGS for crypto and ssl libs, when pkg-config fails. | Matthias Andree | 2020-08-27 | 1 | -0/+10 |
| | |||||
* | Add Serbian translation. | Matthias Andree | 2020-06-14 | 1 | -5/+13 |
| | |||||
* | Prepare fetchmail 6.4.7 release. | Matthias Andree | 2020-06-14 | 1 | -20/+26 |
| | |||||
* | Prepare 6.4.6 (translation update | Matthias Andree | 2020-05-29 | 1 | -0/+6 |
| | |||||
* | Get ready for 6.4.5 release. | Matthias Andree | 2020-05-07 | 1 | -24/+31 |
| | |||||
* | Release 6.4.5-rc1. | Matthias Andree | 2020-05-04 | 1 | -0/+22 |
| | | | | Initial tests done by David Hough, now formal release candidate for translators. | ||||
* | Bump version to 6.4.4, and mention Japanese translation update. | Matthias Andree | 2020-04-26 | 1 | -0/+7 |
| | |||||
* | NEWS: TRANSLATION -> TRANSLATIONS | Matthias Andree | 2020-04-05 | 1 | -1/+1 |
| | |||||
* | Bump version for 6.4.3 release. | Matthias Andree | 2020-04-05 | 1 | -1/+1 |
| | |||||
* | Mention Esperanto update. | Matthias Andree | 2020-04-04 | 1 | -0/+1 |
| | |||||
* | NEWS: Add translations so far. | Matthias Andree | 2020-04-02 | 1 | -0/+10 |
| | |||||
* | Remove broken AC_CHECK_DECLS(getenv). | Matthias Andree | 2020-03-30 | 1 | -0/+6 |
| | | | | | | We were testing #ifndef HAVE_DECL_GETENV, which was always false. Thus, it is safe to assume that the test never triggered, and the entire #ifndef...#endif block can be removed. |