ASchroder_SMTPPro - Version 2.0.2

Version Notes

See magesmtppro.com for full release notes

Download this release

Release Info

Developer ASchroder
Extension ASchroder_SMTPPro
Version 2.0.2
Comparing to
See all releases


Code changes from version 2.0.1 to 2.0.2

README → README.md RENAMED
@@ -7,6 +7,10 @@ by Ashley Schroder (aschroder.com)
7
  - View a log of all emails
8
  - Improve deliverability with an external SMTP server
9
 
 
 
 
 
10
  FAQ
11
 
12
  Q: It's not working
@@ -27,4 +31,4 @@ A: Check that you have the SMTP server host and port correct, if you do - then c
27
  Q: Self test is failing with "Exception message was: 5.7.1 Username and Password not accepted. Learn more at 5.7.1..."
28
  A: It's actually good advice to learn more here: http://support.google.com/mail/bin/answer.py?answer=14257. But two things to check:
29
  1) that you are really 110% sure you have the right username and password (test it on gmail.com)
30
- 2) If that does work, then Google may have blocked your server IP due to too many wrong passwords. You need to log in to gmail.com _from_ that IP - in order to answer the captcha and allow the IP through again. There's a few ways to do that - SOCKS proxy, X forward a browser, use Lynx.
7
  - View a log of all emails
8
  - Improve deliverability with an external SMTP server
9
 
10
+ Contributors
11
+ nl_NL translations thanks to [Melvyn Sopacua](http://www.supportdesk.nu/)
12
+
13
+
14
  FAQ
15
 
16
  Q: It's not working
31
  Q: Self test is failing with "Exception message was: 5.7.1 Username and Password not accepted. Learn more at 5.7.1..."
32
  A: It's actually good advice to learn more here: http://support.google.com/mail/bin/answer.py?answer=14257. But two things to check:
33
  1) that you are really 110% sure you have the right username and password (test it on gmail.com)
34
+ 2) If that does work, then Google may have blocked your server IP due to too many wrong passwords. You need to log in to gmail.com _from_ that IP - in order to answer the captcha and allow the IP through again. There's a few ways to do that - SOCKS proxy, X forward a browser, use Lynx.
app/code/local/Aschroder/SMTPPro/Model/Transports/Basesmtp.php CHANGED
@@ -29,7 +29,7 @@ class Aschroder_SMTPPro_Model_Transports_Basesmtp {
29
 
30
  if ($auth != "none") {
31
  $config['auth'] = $auth;
32
- $config['username'] = $name;
33
  $config['password'] = $password;
34
  }
35
 
29
 
30
  if ($auth != "none") {
31
  $config['auth'] = $auth;
32
+ $config['username'] = $email;
33
  $config['password'] = $password;
34
  }
35
 
app/code/local/Aschroder/SMTPPro/controllers/TestController.php CHANGED
@@ -187,7 +187,7 @@ class Aschroder_SMTPPro_TestController extends Mage_Adminhtml_Controller_Action
187
  $success = false;
188
  $msg = $msg . "<br/>". $_helper->__("Could not find default template, or template not valid, or email communications disabled in Advanced > System settings.");
189
  $msg = $msg . "<br/>". $_helper->__("Please check that you have templates in place for your emails. These are in app/locale, or custom defined in System > Transaction Emails. Also check Advanced > System settings to ensure email communications are enabled.");
190
- $_helper->log($_helper->__("Could not find default template, or template not valid, or email communications disabled in Advanced > System settings"));
191
  }
192
 
193
  } catch (Exception $e) {
@@ -210,7 +210,7 @@ class Aschroder_SMTPPro_TestController extends Mage_Adminhtml_Controller_Action
210
  $success = false;
211
  $msg = $msg . "<br/>". $_helper->__("Could not find required database tables.");
212
  $msg = $msg . "<br/>". $_helper->__("Please try to manually re-run the table creation script. For assistance please contact us.");
213
- $_helper->log($_helper->__("Could not find required tables."));
214
  } else {
215
  $msg = $msg . "<br/>". $_helper->__("Required database tables exist.");
216
  $_helper->log($_helper->__("Required database tables exist."));
@@ -222,7 +222,7 @@ class Aschroder_SMTPPro_TestController extends Mage_Adminhtml_Controller_Action
222
  $msg = $msg . "<br/>". $_helper->__("Could not find required database tables.");
223
  $msg = $msg . "<br/>". $_helper->__("Exception message was: %s", $e->getMessage());
224
  $msg = $msg . "<br/>". $_helper->__("Please try to manually re-run the table creation script. For assistance please contact us.");
225
- $_helper->log($_helper->__("Could not find required tables: %s", $e->getMessage()));
226
  }
227
 
228
 
187
  $success = false;
188
  $msg = $msg . "<br/>". $_helper->__("Could not find default template, or template not valid, or email communications disabled in Advanced > System settings.");
189
  $msg = $msg . "<br/>". $_helper->__("Please check that you have templates in place for your emails. These are in app/locale, or custom defined in System > Transaction Emails. Also check Advanced > System settings to ensure email communications are enabled.");
190
+ $_helper->log($_helper->__("Could not find default template, or template not valid, or email communications disabled in Advanced > System settings."));
191
  }
192
 
193
  } catch (Exception $e) {
210
  $success = false;
211
  $msg = $msg . "<br/>". $_helper->__("Could not find required database tables.");
212
  $msg = $msg . "<br/>". $_helper->__("Please try to manually re-run the table creation script. For assistance please contact us.");
213
+ $_helper->log($_helper->__("Could not find required database tables."));
214
  } else {
215
  $msg = $msg . "<br/>". $_helper->__("Required database tables exist.");
216
  $_helper->log($_helper->__("Required database tables exist."));
222
  $msg = $msg . "<br/>". $_helper->__("Could not find required database tables.");
223
  $msg = $msg . "<br/>". $_helper->__("Exception message was: %s", $e->getMessage());
224
  $msg = $msg . "<br/>". $_helper->__("Please try to manually re-run the table creation script. For assistance please contact us.");
225
+ $_helper->log($_helper->__("Could not find required database tables: %s", $e->getMessage()));
226
  }
227
 
228
 
app/code/local/Aschroder/SMTPPro/etc/config.xml CHANGED
@@ -11,7 +11,7 @@
11
  <config>
12
  <modules>
13
  <Aschroder_SMTPPro>
14
- <version>2.0.1</version>
15
  </Aschroder_SMTPPro>
16
  </modules>
17
  <frontend>
11
  <config>
12
  <modules>
13
  <Aschroder_SMTPPro>
14
+ <version>2.0.2</version>
15
  </Aschroder_SMTPPro>
16
  </modules>
17
  <frontend>
app/locale/en_US/Aschroder_SMTPPro.csv CHANGED
@@ -51,7 +51,6 @@
51
  "Failed to find transport for test.","Failed to find transport for test."
52
  "Unable to send test email.","Unable to send test email."
53
  "Exception message was: %s","Exception message was: %s"
54
-
55
  "Please check the user guide for frequent error messages and their solutions.","Please check the user guide for frequent error messages and their solutions."
56
  "Test email was not sent successfully: %s","Test email was not sent successfully: %s"
57
  "See exception log for more details.","See exception log for more details."
@@ -63,17 +62,11 @@
63
  "Please check that you have templates in place for your emails. These are in app/locale, or custom defined in System > Transaction Emails. Also check Advanced > System settings to ensure email communications are enabled.","Please check that you have templates in place for your emails. These are in app/locale, or custom defined in System > Transaction Emails. Also check Advanced > System settings to ensure email communications are enabled."
64
  "Could not find default template, or template not valid, or email communications disabled in Advanced > System settings","Could not find default template, or template not valid, or email communications disabled in Advanced > System settings"
65
  "Could not test default template validity.","Could not test default template validity."
66
- "Exception message was: %s","Exception message was: %s"
67
  "Please check that you have templates in place for your emails. These are in app/locale, or custom defined in System > Transaction Emails.","Please check that you have templates in place for your emails. These are in app/locale, or custom defined in System > Transaction Emails."
68
  "Could not test default template validity: %s","Could not test default template validity: %s"
69
  "Checking that tables are created...","Checking that tables are created..."
70
  "Could not find required database tables.","Could not find required database tables."
71
  "Please try to manually re-run the table creation script. For assistance please contact us.","Please try to manually re-run the table creation script. For assistance please contact us."
72
- "Could not find required tables.","Could not find required tables."
73
  "Required database tables exist.",""
74
- "Could not find required database tables.","Could not find required database tables."
75
- "Exception message was: %s","Exception message was: %s"
76
- "Please try to manually re-run the table creation script. For assistance please contact us.","Please try to manually re-run the table creation script. For assistance please contact us."
77
- "Could not find required tables: %s","Could not find required tables: %s"
78
  "Testing complete, if you are still experiencing difficulties please visit <a target='_blank' href='http://magesmtppro.com'>the support page</a> or contact me via <a target='_blank' href='mailto:support@aschroder.com'>support@aschroder.com</a> for support.","Testing complete, if you are still experiencing difficulties please visit <a target='_blank' href='http://magesmtppro.com'>the support page</a> or contact me via <a target='_blank' href='mailto:support@aschroder.com'>support@aschroder.com</a> for support."
79
  "Testing failed, please review the reported problems and if you need further help visit <a target='_blank' href='http://magesmtppro.com'>the support page</a> or contact me via <a target='_blank' href='mailto:support@aschroder.com'>support@aschroder.com</a> for support.","Testing failed, please review the reported problems and if you need further help visit <a target='_blank' href='http://magesmtppro.com'>the support page</a> or contact me via <a target='_blank' href='mailto:support@aschroder.com'>support@aschroder.com</a> for support."
51
  "Failed to find transport for test.","Failed to find transport for test."
52
  "Unable to send test email.","Unable to send test email."
53
  "Exception message was: %s","Exception message was: %s"
 
54
  "Please check the user guide for frequent error messages and their solutions.","Please check the user guide for frequent error messages and their solutions."
55
  "Test email was not sent successfully: %s","Test email was not sent successfully: %s"
56
  "See exception log for more details.","See exception log for more details."
62
  "Please check that you have templates in place for your emails. These are in app/locale, or custom defined in System > Transaction Emails. Also check Advanced > System settings to ensure email communications are enabled.","Please check that you have templates in place for your emails. These are in app/locale, or custom defined in System > Transaction Emails. Also check Advanced > System settings to ensure email communications are enabled."
63
  "Could not find default template, or template not valid, or email communications disabled in Advanced > System settings","Could not find default template, or template not valid, or email communications disabled in Advanced > System settings"
64
  "Could not test default template validity.","Could not test default template validity."
 
65
  "Please check that you have templates in place for your emails. These are in app/locale, or custom defined in System > Transaction Emails.","Please check that you have templates in place for your emails. These are in app/locale, or custom defined in System > Transaction Emails."
66
  "Could not test default template validity: %s","Could not test default template validity: %s"
67
  "Checking that tables are created...","Checking that tables are created..."
68
  "Could not find required database tables.","Could not find required database tables."
69
  "Please try to manually re-run the table creation script. For assistance please contact us.","Please try to manually re-run the table creation script. For assistance please contact us."
 
70
  "Required database tables exist.",""
 
 
 
 
71
  "Testing complete, if you are still experiencing difficulties please visit <a target='_blank' href='http://magesmtppro.com'>the support page</a> or contact me via <a target='_blank' href='mailto:support@aschroder.com'>support@aschroder.com</a> for support.","Testing complete, if you are still experiencing difficulties please visit <a target='_blank' href='http://magesmtppro.com'>the support page</a> or contact me via <a target='_blank' href='mailto:support@aschroder.com'>support@aschroder.com</a> for support."
72
  "Testing failed, please review the reported problems and if you need further help visit <a target='_blank' href='http://magesmtppro.com'>the support page</a> or contact me via <a target='_blank' href='mailto:support@aschroder.com'>support@aschroder.com</a> for support.","Testing failed, please review the reported problems and if you need further help visit <a target='_blank' href='http://magesmtppro.com'>the support page</a> or contact me via <a target='_blank' href='mailto:support@aschroder.com'>support@aschroder.com</a> for support."
app/locale/nl_NL/Aschroder_SMTPPro.csv ADDED
@@ -0,0 +1,73 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "SMTPPro - Email Log","SMTPPro - Email Log"
2
+ "SMTP Pro Email Settings","Instellingen SMTP Pro Email"
3
+ "Email Log","Email Log"
4
+ "Aschroder Extensions","Aschroder Extensions"
5
+ "SMTP Pro","SMTP Pro"
6
+ "General Settings","Algemene Instellingen"
7
+ "<div style='background-color: #efefef;margin-bottom: 10px;height: 40px;'> <img style='float:left;width: 150px;' src='http://www.aschroder.com/smtppro-logo.png' /> <span style='float:left;font-size: 20px; margin:10px;'>SMTP Pro Email Extension</span> </div> Configure your SMTP connection below. If you have any questions or would like any help please visit <a href='http://magesmtppro.com' target='_blank'>magesmtppro.com</a>.","<div style='background-color: #efefef;margin-bottom: 10px;height: 40px;'> <img style='float:left;width: 150px;' src='http://www.aschroder.com/smtppro-logo.png' /> <span style='float:left;font-size: 20px; margin:10px;'>SMTP Pro Email Extension</span> </div> Configureer hieronder uw uitgaande mail verbinding. Voor vragen en hulp kunt u terecht bij <a href='http://magesmtppro.com' target='_blank'>magesmtppro.com</a>."
8
+ "Email Connection","Uitgaande mail verbinding"
9
+ "Google Apps Email Address","Google Apps Email Adres"
10
+ "Google Apps Password","Google Apps Wachtwoord"
11
+ "Input your Google Apps or Gmail username and password here. For configuration recommendations please see the guide at <a href='http://magesmtppro.com' target='_blank'>magesmtppro.com</a>","Vul hier uw Google Apps of Gmail gegevens in (gebruikersnaam en wachtwoord). Voor aanbevolen instellingen ga naar de handleiding op <a href='http://magesmtppro.com' target='_blank'>magesmtppro.com</a>"
12
+ "SendGrid Username","SendGrid Gebruikersnaam"
13
+ "SendGrid Password","SendGrid Wachtwoord"
14
+ "Input your SendGrid username and password here. For more information visit <a href='http://sendgrid.com' target='_blank'>SendGrid</a>","Vul uw SendGrid gebruikersnaam en wachtwoord hier in. Voor meer informatie kunt u terecht op <a href='http://sendgrid.com' target='_blank'>SendGrid</a>"
15
+ "Amazon SES Access Key","Amazon SES Toegangssleutel"
16
+ "Amazon SES Secret Key","Amazon SES Privé sleutel"
17
+ "Amazon SES support in SMTP Pro is limited and best suited to development and testing purposes. For a full integration with region selection, error/bounce logging and send statistics please see the premium extension: <a href='http://magesend.com' target='_blank'>MageSend</a>","Amazon SES ondersteuning is beperkt en het meest geschikt voor ontwikkelings- en testdoeleinden. Voor een volledige integratie inclusief regio selection, fout en teruggestuurde mail logs en verzendingsstatistieken is er de proffessionele extensie: <a href='http://magesend.com' target='_blank'>MageSend</a>"
18
+ "Authentication","Authenticatie"
19
+ "Username","Gebruikersnaam"
20
+ "Password","Wachtwoord"
21
+ "Host","Host"
22
+ "Port","Poort"
23
+ "SSL Security","SSL Beveiliging"
24
+ "Custom SMTP servers can be configured in this section. For more information about these configuration options and troubleshooting advice please see <a href='http://magesmtppro.com' target='_blank'>magesmtppro.com</a>","Overig SMTP servers kunnen in deze sectie worden geconfigureerd. Voor meer informatie over deze configuratie opties en adviezen voor probleemoplossing verwijzen we naar <a href='http://magesmtppro.com' target='_blank'>magesmtppro.com</a>"
25
+ "Logging and Debugging","Log en Debug instellingen"
26
+ "Please only use these settings if you are a software developer or server admin.","Gebruik deze instellingen uitsluitend als u een ontwikkelaar of server administrator bent."
27
+ "Log Emails","Log Emails"
28
+ "This will log all outbound emails. View from System->Tools->SMTPPro - Email Log.","Dit zal alle uitgaande emails in loggen. Het log is te bekijken via Systeem->Hulpmiddelen->SMTPPro."
29
+ "Clean Email Logs","Opschonen van Email Logs"
30
+ "If this is set to yes, old entries will be deleted from email log. Cron is required and log cleaning must be enabled in system/log/enabled for this to work.","Als dit is ingeschakeld worden oude vermeldingen verwijderd uit de email log. Hiervoor is de Cron nodig en de instelling Log opschonen moet ingeschakeld zijn onder Geavanceerd->Systeem->Log opschonen."
31
+ "Email Log Days Kept","Aantal dagen te behouden in het Email log"
32
+ "Enable Debug Logging","Schakel debug logs in"
33
+ "If yes, a log file will be written with debug information.","Indien ingeschakeld, zal er een file geschreven worden met debug informatie."
34
+ "Save settings before running this test.","Sla de instellingen op voordat deze test wordt uitgevoerd."
35
+ "Compatible Email Services","Vergelijkbare Email Services"
36
+ "Running SMTP Pro Self Test","De SMTP Pro Zelftest uitvoeren"
37
+ "SMTP Pro Self Test Results","SMTP Pro Zelftest Resultaten"
38
+ "Extension disabled, cannot run test.","Extensie is uitschakeld. Kan de test niet uitvoeren."
39
+ "Checking config re-writes have not clashed.","Er wordt gecontroleerd of er conflicten zijn in de herschreven configuratie."
40
+ ""Detected overwrite conflict: %s","Conflict gedetecteerd in overschrijvings configuratie: %s"
41
+ "Raw connection test for SMTP options.","Ruwe connectie test voor SMTP instellingen."
42
+ "Complete","Compleet"
43
+ "Failed to connect to SMTP server. Reason: ","Kan geen verbinding maken met de STMP server. Reden: "
44
+ "This extension requires an outbound SMTP connection on port: ","Deze extensie heeft een uitgaande SMTP verbinding op poort: "
45
+ "Connection to Host SMTP server successful","Verbinding met de SMTP server geslaagd"
46
+ "Skipping raw connection test for non-SMTP options.","De ruwe connectie test voor non-STMP instellingen wordt overgeslagen."
47
+ "Test Email From SMTP Pro Magento Extension","Test Email van STMP Pro Magento Extensie"
48
+ "Actual email sending test...","Test om een email te versturen..."
49
+ " from: "," van: "
50
+ "Test email was sent successfully","De test email is verzonden"
51
+ "Failed to find transport for test.","Er is geen transport gevonden voor de test"
52
+ "Unable to send test email.","Kan de test email niet verzenden."
53
+ "Exception message was: %s","Het foutbericht was: %s"
54
+ "Please check the user guide for frequent error messages and their solutions.","Check het gebruikershandboek voor de meest voorkomende foutmeldingen en oplossingen."
55
+ "Test email was not sent successfully: %s","De test email was niet verzonden: %s"
56
+ "See exception log for more details.","Bekijk het uitzonderingen log voor meer informatie."
57
+ "Checking that a template exists for the default locale and that email communications are enabled...","Aan het controleren dat een template beschikbaar is voor de standaard locale en dat email communicatie is ingeschakeld."
58
+ "Default templates exist.","Standaard template gevonden."
59
+ "Email communications are enabled.","Email communicatie is ingeschakeld."
60
+ "Default templates exist and email communications are enabled.","Template voor standaard locale gevonden en email communicaties zijn ingeschakeld."
61
+ "Could not find default template, or template not valid, or email communications disabled in Advanced > System settings.","Kon de template voor de default locale niet vinden, het template bevat fouten of de email communicatie is uitgeschakeld in de instellingen onder Geavanceerd > Systeem."
62
+ "Please check that you have templates in place for your emails. These are in app/locale, or custom defined in System > Transaction Emails. Also check Advanced > System settings to ensure email communications are enabled.","Verifiëer dat u de templates voor uw emails geïnstalleerd heeft. Deze staan in de map app/locale of zijn gedefiniëerd in Hoofdmenu > Systeem > Transactionele Emails."
63
+ "Could not test default template validity.","Kon het template voor de default locale niet valideren."
64
+ "Please check that you have templates in place for your emails. These are in app/locale, or custom defined in System > Transaction Emails.","Please check that you have templates in place for your emails. These are in app/locale, or custom defined in System > Transaction Emails."
65
+ "Could not test default template validity: %s","Could not test default template validity: %s"
66
+ "Checking that tables are created...","Aan het controleren of de tabellen aangemaakt zijn..."
67
+ "Could not find required database tables.","Kon de benodigde database tabellen niet vinden..."
68
+ "Please try to manually re-run the table creation script. For assistance please contact us.","Probeer het script dat de tabellen aanmaakt nogmaals handmatig uit te voeren. Als u assistentie nodig heeft, neem contact met ons op."
69
+ "Could not find required database tables.","Kon de benodigde database tabellen niet vinden."
70
+ "Could not find required database tables: %s","Kon de benodigde database tabellen niet vinden: %s"
71
+ "Required database tables exist.","De benodigde database tabellen bestaan."
72
+ "Testing complete, if you are still experiencing difficulties please visit <a target='_blank' href='http://magesmtppro.com'>the support page</a> or contact me via <a target='_blank' href='mailto:support@aschroder.com'>support@aschroder.com</a> for support.","Het testen is afgerond en geslaagd. Als u nog steeds problemen ondervind, ga dan naar <a target='_blank' href='http://magesmtppro.com'>onze help pagina</a> of neem contact met ons op via <a target='_blank' href='mailto:support@aschroder.com'>support@aschroder.com</a> voor ondersteuning."
73
+ "Testing failed, please review the reported problems and if you need further help visit <a target='_blank' href='http://magesmtppro.com'>the support page</a> or contact me via <a target='_blank' href='mailto:support@aschroder.com'>support@aschroder.com</a> for support.","Het testen is niet succesvol afgerond. Onderzoek de gerapporteerde problemen en als u daarbij verdere hulp nodig heeft, bezoek dan <a target='_blank' href='http://magesmtppro.com'>onze help pagina</a> of neem contact met ons op via <a target='_blank' href='mailto:support@aschroder.com'>support@aschroder.com</a> for ondersteuning."
package.xml CHANGED
@@ -1,2 +1,2 @@
1
  <?xml version="1.0"?>
2
- <package><name>ASchroder_SMTPPro</name><version>2.0.1</version><stability>stable</stability><license>OSL</license><channel>community</channel><extends></extends><summary>Robust, Free and Open Source SMTP, Gmail, SendGrid and Google Apps Email support for Magento</summary><description>This extension provides complete control of Email settings for Magento. It can send with any custom SMTP server, your GMail or Google Apps account</description><notes>See magesmtppro.com for full release notes</notes><authors><author><name>ASchroder</name><user>ashleys22</user><email>ashley.schroder@gmail.com</email></author></authors><date>2014-05-04</date><time>2:18:03</time><compatible></compatible><dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies><contents><target name="mage"><file name="README" hash="8239c38097e81000530254c0a28d125c"/><file name="composer.json" hash="572b4738922b0f2c9cc7e4e5da280db0"/><file name="modman" hash="6d9cad597b76568b18856eec6f2301b3"/><dir name="app"><dir name="code"><dir name="local"><dir name="Aschroder"><dir name="SMTPPro"><dir name="Block"><file name="Log.php" hash="f8b34b4602051fdee4c48c289c910eff"/><dir name="Adminhtml"><file name="Table.php" hash="ebb9d19c7cefe83f5825015fbb30f802"/><file name="Test.php" hash="6e5979b8f81ad3aa62dff78ad04945f0"/></dir><dir name="Log"><file name="Grid.php" hash="0b27168a786a59e97d191bae7de0f575"/><file name="View.php" hash="b06eba5c7279a7426537b695920c5f90"/></dir></dir><dir name="controllers"><file name="LogController.php" hash="f2bf802aa0dde04764e2d8cde3f00612"/><file name="TestController.php" hash="1e87bf2d9e542431f632fff0dfe21b6a"/></dir><dir name="etc"><file name="config.xml" hash="cbd9ea299fc2507053ed6f9cf3efd218"/><file name="system.xml" hash="d4eaf2484ff99c5725dc6817b9bfedbf"/></dir><dir name="Helper"><file name="Data.php" hash="4f1537614a0df30c1cfba463b4d01080"/><dir name="Mysql4"><file name="Install.php" hash="2b00edc32e832c8dff3b320027bdb10d"/></dir></dir><dir name="lib"><file name="AmazonSES.php" hash="487803f8f337e780a3284606363a0ce8"/></dir><dir name="Model"><file name="Email.php" hash="454761288409daa56cffb6cf078508f8"/><file name="Observer.php" hash="3fb9ff86c43cdf70023bbfbe3d6455f6"/><dir name="Email"><file name="Log.php" hash="99d2a9634e8668cf756683cc85f47cd5"/><file name="Template.php" hash="44f052d5d90f94fe4a17906206797dba"/></dir><dir name="Mysql4"><file name="Setup.php" hash="7204352ba2ba3e0bd8948a35edd326e4"/><dir name="Email"><file name="Log.php" hash="13d71e0e47e54f221dc2f5b2ec1ae885"/><dir name="Log"><file name="Collection.php" hash="419b27274424f5bce6d704ab5a288ec9"/></dir></dir></dir><dir name="System"><dir name="Config"><dir name="Source"><dir name="Smtp"><file name="Authentication.php" hash="ac4c2e3fae66365bfe5c8b30c12cebea"/><file name="Option.php" hash="e8443f1f0845d2a2dc1fae1949e0812d"/><file name="Ssl.php" hash="8a4cd480e637ea72b6c6e081f661a1b7"/></dir></dir></dir></dir><dir name="Transports"><file name="Basesmtp.php" hash="e916cb83b4106e453c70b771464f2a46"/><file name="Disabled.php" hash="cf6545e7e696c536ba3aef76b7edadf3"/><file name="Google.php" hash="66efa5bdb12f5fecf68077cd9fd0de4e"/><file name="Sendgrid.php" hash="f5ea76686a1a37c9b1417cb67455a576"/><file name="Ses.php" hash="247f9c8a59b40908e0fa3366cbe80007"/><file name="Smtp.php" hash="8e60c0ca9d6f68a8c606831273a2b545"/></dir></dir><dir name="sql"><dir name="smtppro_setup"><file name="mysql4-install-1.1.0.php" hash="c69c20faa54aeff30fab13a475c349fe"/><file name="mysql4-upgrade-1.4.3-1.4.4.php" hash="357c10ec32e3795d8170055b27c7d87c"/></dir></dir></dir></dir></dir></dir><dir name="design"><dir name="adminhtml"><dir name="base"><dir name="default"><dir name="template"><dir name="smtppro"><file name="view.phtml" hash="865ac495aaa0eca28678cba3a4be924f"/></dir></dir></dir></dir></dir></dir><dir name="etc"><dir name="modules"><file name="Aschroder_SMTPPro.xml" hash="23c719e9ecb45c14d29ab24d3e2bd7a1"/></dir></dir><dir name="locale"><dir name="en_US"><file name="Aschroder_SMTPPro.csv" hash="91060a326d1915adeb2f94780e84ac86"/></dir></dir></dir></target></contents></package>
1
  <?xml version="1.0"?>
2
+ <package><name>ASchroder_SMTPPro</name><version>2.0.2</version><stability>stable</stability><license>OSL</license><channel>community</channel><extends></extends><summary>Robust, Free and Open Source SMTP, Gmail, SendGrid and Google Apps Email support for Magento</summary><description>This extension provides complete control of Email settings for Magento. It can send with any custom SMTP server, your GMail or Google Apps account</description><notes>See magesmtppro.com for full release notes</notes><authors><author><name>ASchroder</name><user>ashleys22</user><email>ashley.schroder@gmail.com</email></author></authors><date>2014-05-06</date><time>0:26:07</time><compatible></compatible><dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies><contents><target name="mage"><file name="README.md" hash="de246c2f06fe563cffc8244f90086ec1"/><file name="composer.json" hash="572b4738922b0f2c9cc7e4e5da280db0"/><file name="modman" hash="6d9cad597b76568b18856eec6f2301b3"/><dir name="app"><dir name="code"><dir name="local"><dir name="Aschroder"><dir name="SMTPPro"><dir name="Block"><file name="Log.php" hash="f8b34b4602051fdee4c48c289c910eff"/><dir name="Adminhtml"><file name="Table.php" hash="ebb9d19c7cefe83f5825015fbb30f802"/><file name="Test.php" hash="6e5979b8f81ad3aa62dff78ad04945f0"/></dir><dir name="Log"><file name="Grid.php" hash="0b27168a786a59e97d191bae7de0f575"/><file name="View.php" hash="b06eba5c7279a7426537b695920c5f90"/></dir></dir><dir name="controllers"><file name="LogController.php" hash="f2bf802aa0dde04764e2d8cde3f00612"/><file name="TestController.php" hash="fc448f22da32640daee2af39efaa8d37"/></dir><dir name="etc"><file name="config.xml" hash="e9a9457dd0d7f716e108221752bc31af"/><file name="system.xml" hash="d4eaf2484ff99c5725dc6817b9bfedbf"/></dir><dir name="Helper"><file name="Data.php" hash="4f1537614a0df30c1cfba463b4d01080"/><dir name="Mysql4"><file name="Install.php" hash="2b00edc32e832c8dff3b320027bdb10d"/></dir></dir><dir name="lib"><file name="AmazonSES.php" hash="487803f8f337e780a3284606363a0ce8"/></dir><dir name="Model"><file name="Email.php" hash="454761288409daa56cffb6cf078508f8"/><file name="Observer.php" hash="3fb9ff86c43cdf70023bbfbe3d6455f6"/><dir name="Email"><file name="Log.php" hash="99d2a9634e8668cf756683cc85f47cd5"/><file name="Template.php" hash="44f052d5d90f94fe4a17906206797dba"/></dir><dir name="Mysql4"><file name="Setup.php" hash="7204352ba2ba3e0bd8948a35edd326e4"/><dir name="Email"><file name="Log.php" hash="13d71e0e47e54f221dc2f5b2ec1ae885"/><dir name="Log"><file name="Collection.php" hash="419b27274424f5bce6d704ab5a288ec9"/></dir></dir></dir><dir name="System"><dir name="Config"><dir name="Source"><dir name="Smtp"><file name="Authentication.php" hash="ac4c2e3fae66365bfe5c8b30c12cebea"/><file name="Option.php" hash="e8443f1f0845d2a2dc1fae1949e0812d"/><file name="Ssl.php" hash="8a4cd480e637ea72b6c6e081f661a1b7"/></dir></dir></dir></dir><dir name="Transports"><file name="Basesmtp.php" hash="2d031c80c534ecc978e987fe4281d871"/><file name="Disabled.php" hash="cf6545e7e696c536ba3aef76b7edadf3"/><file name="Google.php" hash="66efa5bdb12f5fecf68077cd9fd0de4e"/><file name="Sendgrid.php" hash="f5ea76686a1a37c9b1417cb67455a576"/><file name="Ses.php" hash="247f9c8a59b40908e0fa3366cbe80007"/><file name="Smtp.php" hash="8e60c0ca9d6f68a8c606831273a2b545"/></dir></dir><dir name="sql"><dir name="smtppro_setup"><file name="mysql4-install-1.1.0.php" hash="c69c20faa54aeff30fab13a475c349fe"/><file name="mysql4-upgrade-1.4.3-1.4.4.php" hash="357c10ec32e3795d8170055b27c7d87c"/></dir></dir></dir></dir></dir></dir><dir name="design"><dir name="adminhtml"><dir name="base"><dir name="default"><dir name="template"><dir name="smtppro"><file name="view.phtml" hash="865ac495aaa0eca28678cba3a4be924f"/></dir></dir></dir></dir></dir></dir><dir name="etc"><dir name="modules"><file name="Aschroder_SMTPPro.xml" hash="23c719e9ecb45c14d29ab24d3e2bd7a1"/></dir></dir><dir name="locale"><dir name="en_US"><file name="Aschroder_SMTPPro.csv" hash="cac99e0ebe14672f707d6f6cff90a3d0"/></dir><dir name="nl_NL"><file name="Aschroder_SMTPPro.csv" hash="708f1868d706e3da71da1978157f2732"/></dir></dir></dir></target></contents></package>