Update of /cvsroot/tmda/tmda/bin
In directory sc8-pr-cvs1:/tmp/cvs-serv13566/bin

Modified Files:
        ChangeLog tmda-check-address 
Log Message:
Bugfix. tmda-check-address was no longer displaying the expired date
for old dated addresses. This must have slipped through the cracks
when migrating to the Address module.


Index: ChangeLog
===================================================================
RCS file: /cvsroot/tmda/tmda/bin/ChangeLog,v
retrieving revision 1.253
retrieving revision 1.254
diff -u -r1.253 -r1.254
--- ChangeLog   5 Feb 2003 00:05:41 -0000       1.253
+++ ChangeLog   18 Feb 2003 06:30:37 -0000      1.254
@@ -1,3 +1,8 @@
+2003-02-17  Jason R. Mastaler  <[EMAIL PROTECTED]>
+
+       * tmda-check-address (main): Bugfix. Print the expired date for
+       old dated addresses.
+
 2003-02-04  Tim Legant  <[EMAIL PROTECTED]>
 
        * tmda-ofmipd (run_authprog): Fixed problem with -A's interface to

Index: tmda-check-address
===================================================================
RCS file: /cvsroot/tmda/tmda/bin/tmda-check-address,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- tmda-check-address  26 Nov 2002 01:05:06 -0000      1.12
+++ tmda-check-address  18 Feb 2003 06:30:37 -0000      1.13
@@ -118,6 +118,10 @@
             pass
     except Address.AddressError, msg:
         print "STATUS:", msg
+        try:
+            print "EXPIRED: %s" % addr.timestamp(1, localtime)
+        except AttributeError:
+            pass
         
 if __name__ == '__main__':
     main()

_______________________________________
tmda-cvs mailing list
http://tmda.net/lists/listinfo/tmda-cvs

Reply via email to