aboutsummaryrefslogtreecommitdiffstats
path: root/NEWS
Commit message (Expand)AuthorAgeFilesLines
...
* We can specify NTLM as an authentication type.Eric S. Raymond2001-02-271-1/+1
* Fixed NTLM to work again.Eric S. Raymond2001-02-271-0/+1
* Almost ready to issue 5.6.0.Eric S. Raymond2001-02-251-1/+3
* Ready to ship.Eric S. Raymond2001-02-221-0/+4
* More authentication types.Eric S. Raymond2001-02-201-0/+2
* Fix a fatal error in Dave Zarzycki's plugin parser.Eric S. Raymond2001-02-191-0/+2
* preauth -> auth.Eric S. Raymond2001-02-191-0/+2
* Version bump.Eric S. Raymond2001-02-191-0/+9
* Ready to shipEric S. Raymond2001-02-161-3/+9
* #85961: Wrong error message when local connection fails.Eric S. Raymond2001-02-151-0/+4
* Got it.Eric S. Raymond2001-02-141-0/+3
* Ready to ship.Eric S. Raymond2001-02-121-1/+7
* Let's get rid of the old protocols with preauthentication bundled in.Eric S. Raymond2001-02-111-0/+6
* Authentication completely refactored.Eric S. Raymond2001-02-111-1/+9
* Ready to ship.Eric S. Raymond2001-02-111-0/+5
* Dave Zarzycki's fixes.Eric S. Raymond2001-02-101-0/+1
* AIX portability fix.Eric S. Raymond2001-02-081-0/+3
* Ready to ship.Eric S. Raymond2001-02-071-0/+4
* Ready to ship.Eric S. Raymond2001-02-071-1/+1
* First cut at ODMR support.Eric S. Raymond2001-02-071-0/+1
* Ready to ship, but no ATRN.Eric S. Raymond2001-02-071-0/+1
* Obvious bug fixes for 5.6.3.Eric S. Raymond2001-02-071-0/+6
* Bump timestamp.Eric S. Raymond2001-01-051-1/+1
* Ready to ship.Eric S. Raymond2001-01-051-1/+9
* Version bump.Eric S. Raymond2000-12-121-0/+4
* Spambounce patch.Eric S. Raymond2000-12-121-0/+2
* Samuel Leo's LMTP enhancement.Eric S. Raymond2000-12-061-1/+2
* The retry patch.Eric S. Raymond2000-12-011-0/+8
* 5-6-0bis fix for smtpname.Eric S. Raymond2000-11-271-1/+2
* Ready to ship.Eric S. Raymond2000-11-261-0/+5
* Ready to ship a gold version.Eric S. Raymond2000-11-261-1/+5
* Ready to ship.Eric S. Raymond2000-11-111-1/+12
* Added --showdots option by Thomas Jarosch <tomj@gmx.de>Eric S. Raymond2000-11-041-0/+4
* Version bump.Eric S. Raymond2000-10-171-1/+9
* Version bump.Eric S. Raymond2000-10-081-0/+3
* Before showdots,Eric S. Raymond2000-10-081-1/+12
* Ready to ship.Eric S. Raymond2000-09-261-1/+6
* Bug fixes and internationalization improvements.Eric S. Raymond2000-09-261-0/+4
* Ready to ship.Eric S. Raymond2000-09-081-1/+6
* Almost ready to ship 5.5.2.Eric S. Raymond2000-09-071-0/+3
* Horst von Brand's security and specfile patches.Eric S. Raymond2000-08-301-1/+3
* ready to ship 5.5.1Eric S. Raymond2000-08-211-0/+4
* Almost ready to ship 5.5.1Eric S. Raymond2000-08-211-0/+8
* Ready to ship 5.5.0.Eric S. Raymond2000-08-121-0/+8
* Avoid spurious dot terminations.Eric S. Raymond2000-08-121-0/+2
* Ready to ship.Eric S. Raymond2000-08-071-1/+5
* David Taylor's fixes for the UIDL code.Eric S. Raymond2000-08-061-0/+3
* Almost ready to ship.Eric S. Raymond2000-07-281-1/+7
* Ready to ship.Eric S. Raymond2000-07-231-0/+4
* Added dropdelivered.Eric S. Raymond2000-07-231-0/+10
not(messagedeleted): popuidllist.append(connect.uidl(mesnum+1)+' '+str(a)) connect.quit() #get rid of lines in uidldate file corresponding to the messages that have been #expired (and hopefully been deleted) datefile.seek(0) for uidldate in datefile: uidldatesplit=uidldate.split(' ') if not(time.time()-float(uidldatesplit[1]))>(86400*days[int(uidldatesplit[2])]): tempfile.write(uidldate) datefile.close() datefile=open(localuidldate,'w+') tempfile.seek(0) for line in tempfile: datefile.write(line) datefile.close() datefile=open(localuidldate,'a+') #add date to uidl for any messages still on the server which have been read #(check in readfile) and store in local datefile. for mesnum in range(totnum): popuidl=popuidllist[mesnum] popuidlsplit=popuidl.split(' ') readfile.seek(0) for localuidl in readfile: if(localuidl.find(popuidlsplit[2])<>-1): foundindatefile=0 datefile.seek(0) for stored in datefile: if (stored.find(popuidlsplit[2])<>-1): foundindatefile=1 if not(foundindatefile): datefile.write(popuidlsplit[2]+' '+str(time.time())+' ' +popuidlsplit[3]+'\n')