Exemple #1
0
 def __init__(self):
     AddFormCommand.__init__(self)
     self.create("To")
     self.create("CC")
     self.create("Subject")
     self.create("Body", multiline=1)
     self.border("~")
Exemple #2
0
 def __init__(self):
     AddFormCommand.__init__(self)
     self.create('To')
     self.create('CC')
     self.create('Subject')
     self.create('Body', multiline=1)
     self.border('~')
Exemple #3
0
    def __init__(self):
        AddFormCommand.__init__(self)

        self.create("Email Address", "*****@*****.**")
        self.create("Incoming Server", "imap.mydomain.com")
        self.create("Protocol", "IMAP", ["IMAP", "POP"])
        self.create("SSL", "No", ["Yes", "No"], [True, False])
        self.create("Incoming User", "Archy")
        self.create("Incoming Password", password=1)
        self.create("Outgoing Server", "smtp.mydomain.com")
        self.create("Outgoing Authentication", "No", ["Yes", "No"], [True, False])
        self.create("TLS", "No", ["Yes", "No"], [True, False])
        self.create("Outgoing User", "Archy")
        self.create("Outgoing Password", password=1)
Exemple #4
0
    def __init__(self):
        AddFormCommand.__init__(self)

        self.create('Email Address', '*****@*****.**')
        self.create('Incoming Server', 'imap.mydomain.com')
        self.create('Protocol', 'IMAP', ['IMAP', 'POP'])
        self.create('SSL', 'No', ['Yes', 'No'], [True, False])
        self.create('Incoming User', 'Archy')
        self.create('Incoming Password', password = 1)
        self.create('Outgoing Server', 'smtp.mydomain.com')
        self.create('Outgoing Authentication', 'No', ['Yes', 'No'], [True, False])
        self.create('TLS', 'No', ['Yes', 'No'], [True, False])
        self.create('Outgoing User', 'Archy')
        self.create('Outgoing Password', password = 1)