ASchroder_SMTPPro - Version 2.0.4

Version Notes

See magesmtppro.com for full release notes

Download this release

Release Info

Developer ASchroder
Extension ASchroder_SMTPPro
Version 2.0.4
Comparing to
See all releases


Code changes from version 2.0.3 to 2.0.4

README.md CHANGED
@@ -10,6 +10,7 @@ by Ashley Schroder (aschroder.com)
10
  Contributors
11
  nl_NL translations thanks to [Melvyn Sopacua](http://www.supportdesk.nu/)
12
  es_ES translations thanks to [Jhoon Saravia](http://twitter.com/jsaravia)
 
13
 
14
 
15
  FAQ
@@ -33,3 +34,6 @@ Q: Self test is failing with "Exception message was: 5.7.1 Username and Password
33
  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:
34
  1) that you are really 110% sure you have the right username and password (test it on gmail.com)
35
  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.
 
 
 
10
  Contributors
11
  nl_NL translations thanks to [Melvyn Sopacua](http://www.supportdesk.nu/)
12
  es_ES translations thanks to [Jhoon Saravia](http://twitter.com/jsaravia)
13
+ pt_BR translations thanks to [Gabriel Zamprogna] (https://github.com/gabrielz)
14
 
15
 
16
  FAQ
34
  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:
35
  1) that you are really 110% sure you have the right username and password (test it on gmail.com)
36
  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.
37
+
38
+ Q: I am getting a Subject set twice error
39
+ A: This happens sometimes, typically if it is happening it would also be happening in core Magento. There is a Pull Request [here] (https://github.com/aschroder/Magento-SMTP-Pro-Email-Extension/pull/57) that includes a work around thanks to [Rafael Kassner] (https://github.com/kassner).
app/code/local/Aschroder/SMTPPro/Helper/Data.php CHANGED
@@ -122,9 +122,19 @@ class Aschroder_SMTPPro_Helper_Data extends Mage_Core_Helper_Abstract
122
  return Mage::getStoreConfig('smtppro/general/sendgrid_password', $storeId);
123
  }
124
 
 
 
 
 
 
 
 
 
 
 
125
  public function getSMTPSettingsHost($storeId = null)
126
  {
127
- return Mage::getStoreConfig('smtppro/general/smtp_host', $storeId);
128
  }
129
 
130
  public function getSMTPSettingsPort($storeId = null)
122
  return Mage::getStoreConfig('smtppro/general/sendgrid_password', $storeId);
123
  }
124
 
125
+ public function getMailUpUsername($storeId = null)
126
+ {
127
+ return Mage::getStoreConfig('smtppro/general/mailup_email', $storeId);
128
+ }
129
+
130
+ public function getMailUpPassword($storeId = null)
131
+ {
132
+ return Mage::getStoreConfig('smtppro/general/mailup_password', $storeId);
133
+ }
134
+
135
  public function getSMTPSettingsHost($storeId = null)
136
  {
137
+ return trim(Mage::getStoreConfig('smtppro/general/smtp_host', $storeId));
138
  }
139
 
140
  public function getSMTPSettingsPort($storeId = null)
app/code/local/Aschroder/SMTPPro/Model/System/Config/Source/Smtp/Option.php CHANGED
@@ -15,6 +15,7 @@ class Aschroder_SMTPPro_Model_System_Config_Source_Smtp_Option extends Varien_Ob
15
  "google" => Mage::helper('smtppro')->__('Google Apps or Gmail'),
16
  "smtp" => Mage::helper('smtppro')->__('Custom SMTP'),
17
  "sendgrid" => Mage::helper('smtppro')->__('SendGrid'),
 
18
  "ses" => Mage::helper('smtppro')->__('Amazon SES')
19
  );
20
  return $options;
15
  "google" => Mage::helper('smtppro')->__('Google Apps or Gmail'),
16
  "smtp" => Mage::helper('smtppro')->__('Custom SMTP'),
17
  "sendgrid" => Mage::helper('smtppro')->__('SendGrid'),
18
+ "mailup" => Mage::helper('smtppro')->__('MailUp'),
19
  "ses" => Mage::helper('smtppro')->__('Amazon SES')
20
  );
21
  return $options;
app/code/local/Aschroder/SMTPPro/Model/Transports/Disabled.php CHANGED
@@ -8,7 +8,7 @@
8
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
9
  */
10
 
11
- class Aschroder_SMTPPro_Model_Transports_Basesmtp {
12
 
13
 
14
  public function getTransport($storeId) {
8
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
9
  */
10
 
11
+ class Aschroder_SMTPPro_Model_Transports_Disabled {
12
 
13
 
14
  public function getTransport($storeId) {
app/code/local/Aschroder/SMTPPro/Model/Transports/Mailup.php ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * @author Ashley Schroder (aschroder.com)
4
+ * @copyright Copyright (c) 2014 Ashley Schroder
5
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
6
+ */
7
+
8
+ class Aschroder_SMTPPro_Model_Transports_Mailup extends Aschroder_SMTPPro_Model_Transports_Basesmtp {
9
+
10
+ public function getName($storeId) {
11
+ return "MailUp";
12
+ }
13
+ public function getEmail($storeId) {
14
+ return Mage::helper('smtppro')->getMailUpUsername($storeId);
15
+ }
16
+ public function getPassword($storeId) {
17
+ return Mage::helper('smtppro')->getMailUpPassword($storeId);
18
+ }
19
+ public function getHost($storeId) {
20
+ return "in.smtpok.com";
21
+ }
22
+ public function getPort($storeId) {
23
+ return 587;
24
+ }
25
+ public function getAuth($storeId) {
26
+ return 'login';
27
+ }
28
+ public function getSsl($storeId) {
29
+ return 'tls';
30
+ }
31
+ }
app/code/local/Aschroder/SMTPPro/controllers/Smtp/TestController.php CHANGED
@@ -66,7 +66,7 @@ class Aschroder_SMTPPro_Smtp_TestController extends Mage_Adminhtml_Controller_Ac
66
  }
67
  if ($this->checkRewrite($this->EXPECTED_REWRITE_CLASSES["email_template_rewrite"], $email_template_rewrite)) {
68
  $success = false;
69
- $msg = $msg . "<br/>". $_helper->__("<Detected overwrite conflict: %s", $email_template_rewrite);
70
  $_helper->log($_helper->__("Detected overwrite conflict: %s", $email_template_rewrite));
71
  }
72
 
66
  }
67
  if ($this->checkRewrite($this->EXPECTED_REWRITE_CLASSES["email_template_rewrite"], $email_template_rewrite)) {
68
  $success = false;
69
+ $msg = $msg . "<br/>". $_helper->__("Detected overwrite conflict: %s", $email_template_rewrite);
70
  $_helper->log($_helper->__("Detected overwrite conflict: %s", $email_template_rewrite));
71
  }
72
 
app/code/local/Aschroder/SMTPPro/etc/config.xml CHANGED
@@ -11,7 +11,7 @@
11
  <config>
12
  <modules>
13
  <Aschroder_SMTPPro>
14
- <version>2.0.3</version>
15
  </Aschroder_SMTPPro>
16
  </modules>
17
  <frontend>
@@ -179,11 +179,13 @@
179
  <default>
180
  <smtppro>
181
  <general>
182
- <option>0</option>
183
  <googleapps_email></googleapps_email>
184
  <googleapps_gpassword backend_model="adminhtml/system_config_backend_encrypted" />
185
  <sendgrid_email></sendgrid_email>
186
  <sendgrid_password backend_model="adminhtml/system_config_backend_encrypted" />
 
 
187
  <ses_access_key></ses_access_key>
188
  <ses_private_key backend_model="adminhtml/system_config_backend_encrypted" />
189
  <smtp_authentication></smtp_authentication>
11
  <config>
12
  <modules>
13
  <Aschroder_SMTPPro>
14
+ <version>2.0.4</version>
15
  </Aschroder_SMTPPro>
16
  </modules>
17
  <frontend>
179
  <default>
180
  <smtppro>
181
  <general>
182
+ <option>disabled</option>
183
  <googleapps_email></googleapps_email>
184
  <googleapps_gpassword backend_model="adminhtml/system_config_backend_encrypted" />
185
  <sendgrid_email></sendgrid_email>
186
  <sendgrid_password backend_model="adminhtml/system_config_backend_encrypted" />
187
+ <mailup_email></mailup_email>
188
+ <mailup_password backend_model="adminhtml/system_config_backend_encrypted" />
189
  <ses_access_key></ses_access_key>
190
  <ses_private_key backend_model="adminhtml/system_config_backend_encrypted" />
191
  <smtp_authentication></smtp_authentication>
app/code/local/Aschroder/SMTPPro/etc/system.xml CHANGED
@@ -83,6 +83,27 @@
83
  <depends><option>sendgrid</option></depends>
84
  </sendgrid_password>
85
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
86
 
87
 
88
  <ses_access_key translate="label">
83
  <depends><option>sendgrid</option></depends>
84
  </sendgrid_password>
85
 
86
+ <mailup_email translate="label">
87
+ <label>MailUp Username</label>
88
+ <frontend_type>text</frontend_type>
89
+ <sort_order>20</sort_order>
90
+ <show_in_default>1</show_in_default>
91
+ <show_in_website>1</show_in_website>
92
+ <show_in_store>0</show_in_store>
93
+ <depends><option>mailup</option></depends>
94
+ </mailup_email>
95
+ <mailup_password translate="label comment">
96
+ <label>MailUp Password</label>
97
+ <comment><![CDATA[Input your MailUp username and password here. For more information visit <a href='http://mailup.com' target='_blank'>MailUp</a>]]></comment>
98
+ <frontend_type>password</frontend_type>
99
+ <backend_model>adminhtml/system_config_backend_encrypted</backend_model>
100
+ <sort_order>23</sort_order>
101
+ <show_in_default>1</show_in_default>
102
+ <show_in_website>1</show_in_website>
103
+ <show_in_store>0</show_in_store>
104
+ <depends><option>mailup</option></depends>
105
+ </mailup_password>
106
+
107
 
108
 
109
  <ses_access_key translate="label">
locale/pt_BR/Aschroder_SMTPPro.csv ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "SMTP Pro Email General Settings","SMTP Pro Email - Configurações Gerais"
2
+ "If you are experiencing problems with this extension please run the self diagnosing test by clicking the button below. The module will log what it is doing if you enable logging, this can be useful to determine problems aswell. If you have any questions or would like any help please visit &lt;a href='http://aschroder.com' target='_blank'&gt;ASchroder.com&lt;/a&gt;.","Se você estiver experimentando problemas com essa extension, por favor rode o teste de autodiagnóstico clicando no botão abaixo. O módulo irá gravar o que estiver fazendo se você ativar a gravação de log; isso pode ser útil para determinar problemas. Caso tenha qualquer dúvida ou precise de ajuda por favor visite <a href='http://aschroder.com' target='_blank'>ASchroder.com</a>."
3
+ "Choose extension option","Escolha a opção da extension"
4
+ "This will determine if the extension uses the simple Google Apps/Gmail configuration, The advanced SMTP configuration or disables the extension completely.","Isso irá determinar se a extension usa a configuração simples para Google Apps/Gmail, a configuração avançada de SMTP ou desabilita a extension completamente."
5
+ "Use Store Email Addresses for Reply-to","Usar endereços de email da loja para Reply-to"
6
+ "Development Mode options","Opções de Modo de Desenvolvimento"
7
+ "Development Mode disabled","Modo de Desenvolvimento desabilitado"
8
+ "Redirect to contact form email","Redirecionar para o email do formulário de email"
9
+ "Supress all emails","Suprimir todos os emails"
10
+ "These options can be used during development and testing to control the destination of all emails, or to stop Magento emails sending. (Note: if extensions do not send emails 'the magento way' then they will not be supressed)","Essas opções podem ser usadas durante o desenvolvimento e teste para controlar o destino de todos os emails, ou para parar o envio de emails do Magento. (Nota: se extensions não estiverem enviando emails da 'maneira Magento' então estes não serão suprimidos)"
11
+ "Log all messages","Gravar log de todas as mensagens"
12
+ "Email Log","Log de Email"
13
+ "This will log all outbound emails to the table smtppro_email_log and allow viewing within the admin interface from System->Tools->Email Log.","Essa configuração irá gravar em log todos os emails disparados para a tabela smtppro_email_log e permitirá visualizar no admin em Sistema->Ferramentas->Log de Email."
14
+ "Run Self Test","Rodar autoteste"
15
+ "This test will ensure the configuration in your Google Apps/ Gmail OR SMTP section are working. You have to save the settings from either of these sections before running this test.","Isso irá garantir que a configuração em sua seção Google Apps / Gmail OU SMTP estão funcionando. Você tem que salvar as configurações de ambas as seções antes de rodar este teste."
16
+ "SMTP Pro Email Google Apps/Gmail Settings","Configurações SMTP Pro Email / Google-Apps/ Gmail"
17
+ "SMTP Pro Email SMTP Settings","Configurações SMTP - SMTP Pro Email"
18
+ "Authentication","Autenticação"
19
+ "None (ignore username/password)","Nenhuma (ignorar login/senha)"
20
+ "This will determine if and how you authenticate with your SMTP server. If you choose no authentication then the username and password below are not used.","Essa configuração irá determinar se e como você se autentica ao servidor SMTP. Se você não escolher autenticação, então o login e a senha abaixo não serão usados."
21
+ "Username","Nome de usuário"
22
+ "If you use Authentication for your SMTP server this is the username used to authenticate.","Se você usa Autenticação para o seu servidor SMTP, esse é o login usado para autenticar."
23
+ "If you use Authentication for your SMTP server this is the password used to authenticate.","Se você usa Autenticação para seu servidor SMTP, essa é a senha usada para autenticar."
24
+ "This is the SMTP server hostname you would like to send your emails through. This is required.","Esse é o hostname do servidor SMTP a partir do qual você gostaria de enviar emails. Isso é obrigatório."
25
+ "This is the port on the SMTP server you connect to. The value is optional, it defaults to 25 for none and TLS or 465 for SSL.","Essa é a porta para se conectar no servidor SMTP. O valor é opcional, seu padrão é 25 para nenhum e TLS, ou 465 para SSL."
26
+ "SSL Security","Segurança SSL"
27
+ "No SSL","Sem SSL"
28
+ "This will determine if any SSL security should be used to connect to your SMTP server.","Essa configuração irá determinar se alguma segurança SSL deve ser usada para conectar ao seu servidor SMTP."
29
+ "TP server you connect to. The value is optional, it defaults to 25 for none and TLS or 465 for SSL.","IP do servidor para se conectar. O valor é opcional, seu padrão é 25 para nenhum ou TLS, ou 465 para SSL."
30
+ "This will determine which configuration is used; Gmail/Google Apps, SMTP or the new experimental Amazon SES.","Isso irá determinar qual configuração será usada; Gmail/Google Apps, SMTP ou a nova e experimental Amazon SES."
31
+ "Port","Porta"
32
+ "SMTP Pro Email Amazon SES Settings (experimental)","Configurações SMTP Pro Email para Amazon SES (experimental)"
33
+ "These settings are for experimental use of the Amazon AWS SES service. This should not be used on a production server yet, but please do try it out and let me know how you get on.","Essas configurações são para uso experimental do serviço Amazon AWS SES. Isso não deve ser usado em um servidor de produção ainda, mas por favor faça um teste e me informe como foi."
34
+ "Access Key","Chave de Acesso"
35
+ "Secret Key","Chave Secreta"
package.xml CHANGED
@@ -1,2 +1,2 @@
1
  <?xml version="1.0"?>
2
- <package><name>ASchroder_SMTPPro</name><version>2.0.3</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-21</date><time>17:17:58</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="1b9587d7a0d10857982704c061a91d86"/><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="dcba2ff6eebc87b9b4eed584fde5f47e"/></dir><dir name="Log"><file name="Grid.php" hash="0b27168a786a59e97d191bae7de0f575"/><file name="View.php" hash="b06eba5c7279a7426537b695920c5f90"/></dir></dir><dir name="controllers"><dir name="Smtp"><file name="LogController.php" hash="d64b41fc7d32cf9a3b3c506f20bc5974"/><file name="TestController.php" hash="ff3c091cbde1b689d6a03cf6057340ae"/></dir></dir><dir name="etc"><file name="config.xml" hash="e3c6e39aa5dc487bb1fc01de02a25680"/><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="es_ES"><file name="Aschroder_SMTPPro.csv" hash="a5aedc950ff435193206c4cc43e4e84a"/></dir><dir name="nl_NL"><file name="Aschroder_SMTPPro.csv" hash="708f1868d706e3da71da1978157f2732"/></dir></dir></dir></target></contents></package>
1
  <?xml version="1.0"?>
2
+ <package><name>ASchroder_SMTPPro</name><version>2.0.4</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-10-16</date><time>13:34:17</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="92309408d9aba9dd7be797d87f9e2493"/><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="dcba2ff6eebc87b9b4eed584fde5f47e"/></dir><dir name="Log"><file name="Grid.php" hash="0b27168a786a59e97d191bae7de0f575"/><file name="View.php" hash="b06eba5c7279a7426537b695920c5f90"/></dir></dir><dir name="controllers"><dir name="Smtp"><file name="LogController.php" hash="d64b41fc7d32cf9a3b3c506f20bc5974"/><file name="TestController.php" hash="571ae38b4f15432968816ea41644a656"/></dir></dir><dir name="etc"><file name="config.xml" hash="f3bf34469251e89aed620aa2a116904d"/><file name="system.xml" hash="6d471d74e2cd07bec19386746f46caab"/></dir><dir name="Helper"><file name="Data.php" hash="9bb931743e252591110d711732471d6f"/><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="8da2d8863b128b42344570b32d344622"/><file name="Ssl.php" hash="8a4cd480e637ea72b6c6e081f661a1b7"/></dir></dir></dir></dir><dir name="Transports"><file name="Basesmtp.php" hash="2d031c80c534ecc978e987fe4281d871"/><file name="Disabled.php" hash="dd16fb900bc07fc79576ae468470ddec"/><file name="Google.php" hash="66efa5bdb12f5fecf68077cd9fd0de4e"/><file name="Mailup.php" hash="e4702ab5cd5bcdf72e0dec446a382218"/><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="es_ES"><file name="Aschroder_SMTPPro.csv" hash="a5aedc950ff435193206c4cc43e4e84a"/></dir><dir name="nl_NL"><file name="Aschroder_SMTPPro.csv" hash="708f1868d706e3da71da1978157f2732"/></dir></dir></dir><dir name="locale"><dir name="pt_BR"><file name="Aschroder_SMTPPro.csv" hash="7027c6bde1f0007c775181715289a91c"/></dir></dir></target></contents></package>