X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=ud-forwardlist;h=727cfd9b24e9369fc5448c6ddd1f112a987ecb82;hb=8c2da2d918916444695d3bf98163ac9cd65ba91f;hp=9e5e28add8ff23c4db8458ca0aefc14d0bafd88a;hpb=c50d88536a4feb3087d1aa802e110250cb2861fc;p=mirror%2Fuserdir-ldap.git diff --git a/ud-forwardlist b/ud-forwardlist index 9e5e28a..727cfd9 100755 --- a/ud-forwardlist +++ b/ud-forwardlist @@ -12,12 +12,12 @@ # # It also understand .qmail type files -import string, re, time, getopt, os, sys, pwd, stat; +import re, time, getopt, os, sys, pwd, stat; AddressSplit = re.compile("<(.*)>"); while (1): - File = string.strip(sys.stdin.readline()); + File = sys.stdin.readline().strip() if File == "": break; @@ -32,7 +32,7 @@ while (1): Forward = open(File,"r"); Line = None; while (1): - Line2 = string.strip(Forward.readline()); + Line2 = Forward.readline().strip() if Line2 == "": break; if Line2[0] == '#' or Line2[0] == '\n': @@ -49,7 +49,7 @@ while (1): # Abort for funky things like pipes or directions to mailboxes if Line[0] == '/' or Line[0] == '|' or Line[0] == '.' or Line[-1] == '/' or \ - string.find(Line,'@') == -1: + Line.find('@') == -1: print "Invalid2", File; continue;