aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* One more gitorious -> gitlab.Matthias Andree2015-10-301-1/+1
|
* Expand item M7 by the aka clause.Matthias Andree2015-10-301-6/+13
| | | | In response to a finding by Marco Stoecker.
* Remove line left over in edits.Matthias Andree2015-09-271-2/+0
|
* Note that fetchmail 6.3.5 and newer should fix the 'spurious )' in IMAP.Matthias Andree2015-09-271-0/+2
|
* Re
From James.Stevens@jrcs.co.uk  Mon Aug 25 18:11:36 1997
Return-Path: <James.Stevens@jrcs.co.uk>
Received: from locke.ccil.org (snark [10.0.2.15])
	by snark.thyrsus.com (8.8.5/8.8.5) with ESMTP id SAA10394
	for <esr@snark.thyrsus.com>; Mon, 25 Aug 1997 18:11:34 -0400
Received: (from slist@localhost)
	by locke.ccil.org (8.8.5/8.8.5) id GAA17071
	for esr; Mon, 18 Aug 1997 06:17:07 -0500 (EST)
Resent-Date: Mon, 18 Aug 1997 06:17:07 -0500 (EST)
X-Authentication-Warning: locke.ccil.org: slist set sender to fetchmail-friends-request@ccil.org using -f
X-NiNLog: [James.Stevens@jrcs.co.uk] [<fetchmail-friends@locke.ccil.org>] [199708180955.KAA04988]
Message-ID: <33F81C2D.AB822BBB@jrcs.co.uk>
Date: Mon, 18 Aug 1997 10:55:57 +0100
From: James Stevens <James.Stevens@jrcs.co.uk>
Reply-To: James.Stevens@jrcs.co.uk
Organization: JRCS Ltd
X-Mailer: Mozilla 4.01 [en] (Win95; I)
MIME-Version: 1.0
To: "fetchmail-friends@locke.ccil.org" <fetchmail-friends@locke.ccil.org>
Subject: A Little Tip...
X-Priority: 3 (Normal)
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Resent-Message-ID: <"lhVgRB.A.FFE.bxC-z"@locke.ccil.org>
Resent-From: fetchmail-friends@ccil.org
X-Mailing-List: <fetchmail-friends@ccil.org> archive/latest/725
X-Loop: fetchmail-friends@ccil.org
Precedence: list
Resent-Sender: fetchmail-friends-request@ccil.org
Status: RO

Seeing Eric tip us that we could run a "fetchmail -quit" in the
"ip-down" script, I thougt it would be neat to run a fetchmail
collection in the "ip-up" script. That way mail is collected
automatically every time I am connecting to Internet for whatever reason
(I use "diald" to automatically manage my connection).

However, it did not work. It hung right after the POP3 login. I tracked
this down to the fact that the "pppd" masks a wide range of signals and
this means a time-out does not kick in. As I run the "ip-up" script in
"bash" this masking is inheritied by "fetchmail".

So, I wrote a silly little "C" program that unmasks all signals and then
runs a command of you choice (in this case fetchmail). This is the code
for that program :-

#include <stdio.h>
#include <signal.h>

main(int argc,char * argv[])
{
sigset_t set;

    if (argc>1)
        {
        sigfillset(&set);
        sigprocmask(SIG_UNBLOCK,&set,NULL);
        system(argv[1]);
        }
}

I call it "allsigs". So, now in my "ip-up" I have the line :-

allsigs "fetchmail -f /etc/fetahmail"

Note the quotes as "allsigs" only looks at argv[1]. I guess this
unmasking of all signals could be added into "fetchmail" ?

James
subject'>TLS overhaul, bumping version to 6.4Matthias Andree2015-01-2612-185/+275 | | | | | | | | | | | | | | | Removes SSLv2, enables TLSv1.1 and v1.2 more easily, permits SSLv3 (only if specified) and newer TLSv1.1+ for STLS/STARTTLS. Only negotiates TLSv1 and newer by default, SSLv3 must now be specified explicitly, as a consequence of the POODLE attack. This is meant to be a minimally upgraded version, and cannot be usefully done as a 6.3.X release. It is strongly recommended that users review their configuration - especially --sslproto - per instructions in the NEWS file and manual page. It has changed semantics and in many cases --sslproto auto or perhaps --sslproto tls1.2+ should be used now. * Also report SSL/TLS protocol version in verbose mode.Matthias Andree2015-01-161-2/+6 | * Report SSL/TLS cipher, in verbose mode.Matthias Andree2015-01-161-0/+14 | | | | (socket.c cherry-pick from master) * Bump copyright.Matthias Andree2015-01-162-217/+217 | * Also recognize OPENSSL_NO_SSLx.Matthias Andree2015-01-163-7/+14 | | | | | These are the macros OpenSSL defines when configured with no-ssl2 or no-ssl3, the actual macro names are OPENSSL_NO_SSL2 and OPENSSL_NO_SSL3. * Permit build on SSLv3-disabled OpenSSL,Matthias Andree2015-01-165-10/+33 | | | | | | | providing that these also omit the declaration of SSLv3_client_method(). Related to Debian Bug#775255. Version report lists -SSLv3 on +SSL builds that omit SSLv3_client_method(). Version report lists -SSLv2 on +SSL builds that omit SSLv2_client_method(). * Update German translation for --idle check.Matthias Andree2014-11-221-155/+160 | * More warnings on idle vs. multiple mailboxes.Matthias Andree2014-11-222-7/+11 | | | | In response to Jeremy Chadwick's trouble 2014-11-19, fetchmail-users. * Error out if user combines --idle with multiple mailboxes.Matthias Andree2014-11-222-1/+14 | * Make test suite compatible with automake 1.14.Matthias Andree2014-11-221-2/+2 | * Update now that the lists are back up.Matthias Andree2014-07-041-13/+7 | * Update. Sourceforge.net oversleeping mailing list import.Matthias Andree2014-06-121-3/+7 | * More berlios -> sourceforge changes.Matthias Andree2014-05-213-3/+3 | * More berlios -> sourceforge changes.Matthias Andree2014-05-211-46/+0 | * Update error reporting address.Matthias Andree2014-05-2125-272/+284 | * Update website again.Matthias Andree2014-05-211-2/+1 | * Update website.Matthias Andree2014-05-211-4/+3 | * Ignore .settings directory.Matthias Andree2014-05-211-0/+1 | * Convert most references from berlios.de to sourceforge.net.Matthias Andree2014-05-2133-157/+866 | | | | Re-sign EN and SAs because that broke signatures. * Do not translate header tags such as "Subject:".Matthias Andree2014-05-205-76/+80 | | | | Reported by Gonzalo Pérez de Olaguer Córdoba, Debian Bug#744907. * Update last change date.Matthias Andree2014-05-201-1/+1 | * Remove berlios from upload script.Matthias Andree2014-05-201-13/+1 | * Emergency update after berlios shutdown.Matthias Andree2014-05-201-12/+21 | * Update FAQ #G2, remove iBiblio link, add Gitorious and Sourceforge Git repos.Matthias Andree2014-02-141-3/+3 | * Fix typo around forcecr documentation.Matthias Andree2013-06-211-1/+1 | * Remove comment that confuses splint.Matthias Andree2013-05-111-1/+1 | * Fix typo in 'you could [end] up' in FAQ.Matthias Andree2013-05-112-1/+7 | | | | Fixes Debian Bug#706776, submitted by David Lawyer. * Update for 6.3.26 release.Matthias Andree2013-04-2324-74/+74 | * Mark release date.Matthias Andree2013-04-231-21/+25 | * Update German translation.Matthias Andree2013-04-231-5/+5 | * Bump version.Matthias Andree2013-04-232-2/+2 | * Update info on the mimedecode fix.Matthias Andree2013-04-231-9/+14 |