Skip to content

Commit

Permalink
Email numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
m7x committed May 27, 2014
1 parent 3d5a42f commit 59ea13e
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions phemail.py
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,6 @@ def usage(version):
-m mail_server: SMTP mail server to connect to
-g Google: Use a google account username:password
-t Time delay: Add deleay between each email (Default: 3 sec)
-R Bunch of emails per time (Default: 10 emails)
-L webserverLog: Customise the name of the webserver log file (Default: Date time in format "%d_%m_%Y_%H_%M")
-S Search: query on Google
-d domain: of email addresses
Expand Down Expand Up @@ -419,10 +418,8 @@ def usage(version):
sender.guser,sender.gpass = a.split(":")
elif o == "-t":
sender.delay = int(a)
elif o == "-R":
sender.limit = int(a)
elif o == "-n":
limit = int(a)
sender.limit = int(a)
elif o == "-L":
webserverLog = "".join([c for c in a if re.match(r'\w', c)])
else:
Expand Down

0 comments on commit 59ea13e

Please sign in to comment.