Python smtplib.SMTPHeloError() Examples
The following are 4
code examples of smtplib.SMTPHeloError().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
smtplib
, or try the search function
.
Example #1
Source File: tests.py From jorvik with GNU General Public License v3.0 | 6 votes |
def test_fallimento_helo(self, mock_smtp): """ In caso di fallimento durante helo il messaggio viene rimesso in coda, tranne che in caso di errore 5XX che รจ permanente """ self.assertEqual(Messaggio.in_coda().count(), 0) codici = (500, 501, 504, 521, 421) for codice in codici: msg = 'code {}'.format(codice) instance = mock_smtp.return_value instance.sendmail.side_effect = smtplib.SMTPHeloError(code=codice, msg=msg) self._invia_msg_singolo() if codice == 501: self.assertEqual(Messaggio.in_coda().count(), 0) else: self.assertEqual(Messaggio.in_coda().count(), 1) self._reset_coda()
Example #2
Source File: smtpconnection.py From smtp-email-spoofer-py with GNU General Public License v3.0 | 5 votes |
def __ehlo(self): try: self.server.ehlo() if not self.server.does_esmtp: logger.error('The server does not support ESMTP') exit(1) except smtplib.SMTPHeloError: logger.error('The server did not reply properly to the EHLO/HELO greeting.') exit(1)
Example #3
Source File: sms.py From king-phisher with BSD 3-Clause "New" or "Revised" License | 4 votes |
def send_sms(message_text, phone_number, carrier, from_address=None): """ Send an SMS message by emailing the carriers SMS gateway. This method requires no money however some networks are blocked by the carriers due to being flagged for spam which can cause issues. :param str message_text: The message to send. :param str phone_number: The phone number to send the SMS to. :param str carrier: The cellular carrier that the phone number belongs to. :param str from_address: The optional address to display in the 'from' field of the SMS. :return: This returns the status of the sent messsage. :rtype: bool """ from_address = (from_address or DEFAULT_FROM_ADDRESS) phone_number = phone_number.replace('-', '').replace(' ', '') # remove the country code for these 10-digit based match = re.match('1?(?P<phone_number>[0-9]{10})', phone_number) if match is None: raise ValueError('the phone number appears invalid') phone_number = match.group('phone_number') if len(message_text) > 160: raise ValueError('message length exceeds 160 characters') message = MIMEText(message_text) carrier_address = lookup_carrier_gateway(carrier) if not carrier_address: raise ValueError('unknown carrier specified') to_address = "{0}@{1}".format(phone_number, carrier_address) message['To'] = to_address message['From'] = from_address sms_gateways = get_smtp_servers(carrier_address) random.shuffle(sms_gateways) message_sent = False for sms_gateway in sms_gateways: try: smtp_connection = smtplib.SMTP(sms_gateway) smtp_connection.sendmail(from_address, [to_address], message.as_string()) smtp_connection.quit() except (smtplib.SMTPConnectError, smtplib.SMTPDataError, smtplib.SMTPHeloError): continue message_sent = True break return message_sent
Example #4
Source File: delivery.py From mail-security-tester with GNU General Public License v3.0 | 4 votes |
def deliver_testcase(self, testcase, recipient): super().deliver_testcase(testcase, recipient) print("Sending test case {} from test '{}' to {}".format(self.testcase_index, self.testcases.name, recipient)) self.allow_delay_increase() try: try: if testcase.delivery_sender: sender = self.sender else: sender = None except AttributeError: sender = None try: if testcase.delivery_recipient: recipient = recipient else: recipient = None except AttributeError: recipient = None result = self.smtp.send_message(testcase, sender, recipient) if result: for failed_recipient, (code, message) in result.items(): print("! Sending to recipient {} failed with error code {}: {}".format(failed_recipient, code, message)) self.logger.log(self.testcases.identifier, self.testcase_index, self.recipient, False, code, message) if code in self.delay_increasing_status: self.increase_delay() else: self.logger.log(self.testcases.identifier, self.testcase_index, self.recipient) except smtplib.SMTPRecipientsRefused as e: print("! Reciepent refused") for failed_recipient, (code, message) in e.recipients.items(): print("! Sending to recipient {} failed with error code {}: {}".format(failed_recipient, code, str(message, "iso-8859-1"))) self.logger.log(self.testcases.identifier, self.testcase_index, failed_recipient, False, code, str(message, "iso-8859-1")) if code in self.delay_increasing_status: self.increase_delay() except smtplib.SMTPHeloError as e: print("! SMTP error while HELO: " + str(e)) if e.smtp_code in self.delay_increasing_status: self.increase_delay() except smtplib.SMTPSenderRefused as e: print("! SMTP server rejected sender address: " + str(e)) self.logger.log(self.testcases.identifier, self.testcase_index, self.recipient, False, e.smtp_code, e.smtp_error) if e.smtp_code in self.delay_increasing_status: self.increase_delay() except smtplib.SMTPDataError as e: print("! Unexpected SMTP error: " + str(e)) self.logger.log(self.testcases.identifier, self.testcase_index, self.recipient, False, e.smtp_code, e.smtp_error) if e.smtp_code in self.delay_increasing_status: self.increase_delay() except smtplib.SMTPNotSupportedError as e: print("! SMTP server doesn't supports: " + str(e)) self.logger.log(self.testcases.identifier, self.testcase_index, self.recipient, False, -1, str(e)) except smtplib.SMTPServerDisconnected as e: self.logger.log(self.testcases.identifier, self.testcase_index, self.recipient, False, -2, str(e)) print("! SMTP server disconnected unexpected - reconnecting: " + str(e)) self.smtp = smtplib.SMTP(self.target)