コード例 #1
0
 def addIMAPUsername(self, username, password):
     print "IMAP trying to add user with " + username + " " + password
     imapAdmin = IMAPtest()
     imapAdmin.createUser(username, password)
     imapAdmin.populateMailbox(username)
     print "IMAP mailbox populated"
コード例 #2
0
ファイル: ServerMain.py プロジェクト: rkoewer/HoneyConnector
 def resetIMAP(self, username, password):
     imapAdmin = IMAPtest()
     imapAdmin.deleteUser(username)
     print "IMAP user", username, "deleted"
コード例 #3
0
 def resetIMAP(self, username, password):
     imapAdmin = IMAPtest()
     imapAdmin.deleteUser(username)
     print "IMAP user", username, "deleted"
コード例 #4
0
ファイル: ServerMain.py プロジェクト: rkoewer/HoneyConnector
 def addIMAPUsername(self, username, password):
     print "IMAP trying to add user with " + username + " " + password
     imapAdmin = IMAPtest()
     imapAdmin.createUser(username, password)
     imapAdmin.populateMailbox(username)
     print "IMAP mailbox populated"