Sergio Bortsov wrote: > Sorry for disturbance,but I still have question about comeagain.py > script. > Its very usefull for me.But I want to understand, > 1) meaning of these strings > sendersTTL = 60 * 60 * 24 * 30 > sendersPurgeInterval = 60 * 60 * 12
The comment above those variables explains that both values are given in seconds. The interval controls how often the list is purged, and the TTL controls how old an individual token needs to be in order to be removed. > 2) how can I check that db of mail addresses that was created by > comeagain script You really don't. The values in the DB are hashes; they're meaningless. > I try to debug work of this script by using this instruction > # For debugging, you can create a file that contains one line, > # beginning with an 's' character, followed by an email address > # and more lines, beginning with an 'r' character, for each > # recipient. Run this script with the name of that file as an > # argument, and it'll validate that email address > I created the control file like this > [EMAIL PROTECTED] > [EMAIL PROTECTED] > r... > r.... I apologize for that. It's actually not sufficient to have just the 'r' line. For each recipient, you need a full set of 'r', 'R', 'N' records, as courier would write. You can leave the R and N lines empty, though: [EMAIL PROTECTED] [EMAIL PROTECTED] R N [EMAIL PROTECTED] R N ------------------------------------------------------------------------- This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ _______________________________________________ courier-users mailing list [email protected] Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users
