Version Notes
See magesmtppro.com for full release notes
Download this release
Release Info
Developer | ASchroder |
Extension | ASchroder_SMTPPro |
Version | 2.0.3 |
Comparing to | |
See all releases |
Code changes from version 2.0.2 to 2.0.3
- README.md +2 -1
- app/code/local/Aschroder/SMTPPro/Block/Adminhtml/Test.php +2 -2
- app/code/local/Aschroder/SMTPPro/controllers/{LogController.php → Smtp/LogController.php} +1 -1
- app/code/local/Aschroder/SMTPPro/controllers/{TestController.php → Smtp/TestController.php} +4 -2
- app/code/local/Aschroder/SMTPPro/etc/config.xml +13 -2
- app/locale/es_ES/Aschroder_SMTPPro.csv +72 -0
- package.xml +1 -1
README.md
CHANGED
@@ -8,7 +8,8 @@ by Ashley Schroder (aschroder.com)
|
|
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
|
8 |
- Improve deliverability with an external SMTP server
|
9 |
|
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
|
app/code/local/Aschroder/SMTPPro/Block/Adminhtml/Test.php
CHANGED
@@ -36,7 +36,7 @@ class Aschroder_SMTPPro_Block_Adminhtml_Test
|
|
36 |
|
37 |
// TODO: for real multi-store self-testing, the test button (and other configuration options)
|
38 |
// should probably be set to show in website. Currently they are not.
|
39 |
-
$url =
|
40 |
|
41 |
$buttonHtml = $this->getLayout()->createBlock('adminhtml/widget_button')
|
42 |
->setType('button')
|
@@ -49,4 +49,4 @@ class Aschroder_SMTPPro_Block_Adminhtml_Test
|
|
49 |
|
50 |
|
51 |
|
52 |
-
}
|
36 |
|
37 |
// TODO: for real multi-store self-testing, the test button (and other configuration options)
|
38 |
// should probably be set to show in website. Currently they are not.
|
39 |
+
$url = Mage::helper('adminhtml')->getUrl("*/smtp_test/index", $params);
|
40 |
|
41 |
$buttonHtml = $this->getLayout()->createBlock('adminhtml/widget_button')
|
42 |
->setType('button')
|
49 |
|
50 |
|
51 |
|
52 |
+
}
|
app/code/local/Aschroder/SMTPPro/controllers/{LogController.php → Smtp/LogController.php}
RENAMED
@@ -10,7 +10,7 @@
|
|
10 |
*/
|
11 |
|
12 |
|
13 |
-
class
|
14 |
extends Mage_Adminhtml_Controller_Action {
|
15 |
|
16 |
protected function _initAction() {
|
10 |
*/
|
11 |
|
12 |
|
13 |
+
class Aschroder_SMTPPro_Smtp_LogController
|
14 |
extends Mage_Adminhtml_Controller_Action {
|
15 |
|
16 |
protected function _initAction() {
|
app/code/local/Aschroder/SMTPPro/controllers/{TestController.php → Smtp/TestController.php}
RENAMED
@@ -7,7 +7,7 @@
|
|
7 |
* @copyright Copyright (c) 2014 Ashley Schroder
|
8 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
9 |
*/
|
10 |
-
class
|
11 |
{
|
12 |
|
13 |
// We use the contacts form template as a test template
|
@@ -28,7 +28,9 @@ class Aschroder_SMTPPro_TestController extends Mage_Adminhtml_Controller_Action
|
|
28 |
protected $KNOWN_ERRORS = array(
|
29 |
"/Email address is not verified/" => "Either your sending or receiving email address is not verified.<br/>Please check your Amazon SES console and confirm the email addresses are verified and the region matches.",
|
30 |
"/RequestExpired/" => "Check the date and time on your server is set correctly.<br/>Amazon's servers think your server time is more than 5 minutes different to their time and are rejecting the request.",
|
31 |
-
"/Request is missing Authentication Token/" => "Check that you have an access key and secret key."
|
|
|
|
|
32 |
);
|
33 |
|
34 |
public function indexAction()
|
7 |
* @copyright Copyright (c) 2014 Ashley Schroder
|
8 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
9 |
*/
|
10 |
+
class Aschroder_SMTPPro_Smtp_TestController extends Mage_Adminhtml_Controller_Action
|
11 |
{
|
12 |
|
13 |
// We use the contacts form template as a test template
|
28 |
protected $KNOWN_ERRORS = array(
|
29 |
"/Email address is not verified/" => "Either your sending or receiving email address is not verified.<br/>Please check your Amazon SES console and confirm the email addresses are verified and the region matches.",
|
30 |
"/RequestExpired/" => "Check the date and time on your server is set correctly.<br/>Amazon's servers think your server time is more than 5 minutes different to their time and are rejecting the request.",
|
31 |
+
"/Request is missing Authentication Token/" => "Check that you have an access key and secret key.",
|
32 |
+
"/Network is unreachable/" => "There seems to be a problem with the connectivity on your server. Please check with your host that outbound SMTP connections are allowed. This is probably not a bug, please do not email extension support until you have checked with your server admin or host.",
|
33 |
+
"/Connection timed out/" => "Your connection to the SMTP server timed out. Please check with your host that outbound SMTP connections are allowed as this error is most commonly caused when a host blocks outbound connections. This is probably not a bug, please do not email extension support until you have checked with your server admin or host."
|
34 |
);
|
35 |
|
36 |
public function indexAction()
|
app/code/local/Aschroder/SMTPPro/etc/config.xml
CHANGED
@@ -11,7 +11,7 @@
|
|
11 |
<config>
|
12 |
<modules>
|
13 |
<Aschroder_SMTPPro>
|
14 |
-
<version>2.0.
|
15 |
</Aschroder_SMTPPro>
|
16 |
</modules>
|
17 |
<frontend>
|
@@ -25,6 +25,17 @@
|
|
25 |
</smtppro>
|
26 |
</routers>
|
27 |
</frontend>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
28 |
<global>
|
29 |
<helpers>
|
30 |
<smtppro><class>Aschroder_SMTPPro_Helper</class></smtppro>
|
@@ -122,7 +133,7 @@
|
|
122 |
<children>
|
123 |
<smtppro translate="title" module="smtppro">
|
124 |
<title>SMTPPro - Email Log</title>
|
125 |
-
<action>
|
126 |
</smtppro>
|
127 |
</children>
|
128 |
</tools>
|
11 |
<config>
|
12 |
<modules>
|
13 |
<Aschroder_SMTPPro>
|
14 |
+
<version>2.0.3</version>
|
15 |
</Aschroder_SMTPPro>
|
16 |
</modules>
|
17 |
<frontend>
|
25 |
</smtppro>
|
26 |
</routers>
|
27 |
</frontend>
|
28 |
+
<admin>
|
29 |
+
<routers>
|
30 |
+
<adminhtml>
|
31 |
+
<args>
|
32 |
+
<modules>
|
33 |
+
<smtppro after="Mage_Adminhtml">Aschroder_SMTPPro</smtppro>
|
34 |
+
</modules>
|
35 |
+
</args>
|
36 |
+
</adminhtml>
|
37 |
+
</routers>
|
38 |
+
</admin>
|
39 |
<global>
|
40 |
<helpers>
|
41 |
<smtppro><class>Aschroder_SMTPPro_Helper</class></smtppro>
|
133 |
<children>
|
134 |
<smtppro translate="title" module="smtppro">
|
135 |
<title>SMTPPro - Email Log</title>
|
136 |
+
<action>adminhtml/smtp_log</action>
|
137 |
</smtppro>
|
138 |
</children>
|
139 |
</tools>
|
app/locale/es_ES/Aschroder_SMTPPro.csv
ADDED
@@ -0,0 +1,72 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
"SMTPPro - Email Log","SMTPPro - Registro de Correos"
|
2 |
+
"SMTP Pro Email Settings","Configuración de Correo de SMTP Pro"
|
3 |
+
"Email Log","Registro de Correos"
|
4 |
+
"Aschroder Extensions","Extensiones Aschroder"
|
5 |
+
"SMTP Pro","SMTP Pro"
|
6 |
+
"General Settings","Configuración General"
|
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;'>Extensión de Correo SMTP Pro</span> </div> Configure su conexión SMTP aquí. Si tienes alguna pregunta o te gustaría obtener ayuda, por favor visita <a href='http://magesmtppro.com' target='_blank'>magesmtppro.com</a>."
|
8 |
+
"Email Connection","Conexión de Correo"
|
9 |
+
"Google Apps Email Address","Dirección de Correo de Google Apps"
|
10 |
+
"Google Apps Password","Contraseña de Google Apps"
|
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>","Ingresa tu usuario y contraseña de Google Apps o Gmail aquí. Para recomendaciones de configuración, por favor revisa la guía en <a href='http://magesmtppro.com' target='_blank'>magesmtppro.com</a>"
|
12 |
+
"SendGrid Username","Usuario de SendGrid"
|
13 |
+
"SendGrid Password","Contraseña de SendGrid"
|
14 |
+
"Input your SendGrid username and password here. For more information visit <a href='http://sendgrid.com' target='_blank'>SendGrid</a>","Ingresa tu usuario y contraseña de SendGrid aquí. Para más información, visita <a href='http://sendgrid.com' target='_blank'>SendGrid</a>"
|
15 |
+
"Amazon SES Access Key","Llave de Acceso de Amazon SES"
|
16 |
+
"Amazon SES Secret Key","Llave Secreta de Amazon SES"
|
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>","El soporte para Amazon SES en SMTP Pro es limitado y es más adecuado para propósitos de desarrollo y pruebas. Para una integración completa con selección de región, registro de errores/rebotes, y envío de estadísticas, por favor revisa la extensión premium: <a href='http://magesend.com' target='_blank'>MageSend</a>"
|
18 |
+
"Authentication","Autenticación"
|
19 |
+
"Username","Usuario"
|
20 |
+
"Password","Contraseña"
|
21 |
+
"Host","Host"
|
22 |
+
"Port","Puerto"
|
23 |
+
"SSL Security","Seguridad SSL"
|
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>","Los servidores SMTP personalizados se pueden configurar en esta sección. Para más información sobre estas opciones de configuración y consejos para resolución de problemas, por favor revisa <a href='http://magesmtppro.com' target='_blank'>magesmtppro.com</a>"
|
25 |
+
"Logging and Debugging","Registro y Depuración"
|
26 |
+
"Please only use these settings if you are a software developer or server admin.","Por favor, usa estas configuraciones solo si eres desarrollador de software o administrador de servidores."
|
27 |
+
"Log Emails","Registrar Correos"
|
28 |
+
"This will log all outbound emails. View from System->Tools->SMTPPro - Email Log.","Esto registrará todos los correos salientes. Míralos desde Sistema->Herramientas->SMTPPro - Registro de Correos."
|
29 |
+
"Clean Email Logs","Limpiar Registro de Correos"
|
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.","Si se ajusta esto a Sí, las entradas antiguas se borrarán del registro de correos. Se requiere Cron y que la limpieza de registros esté activada en Sistema/Registro/Activado para que esto funcione."
|
31 |
+
"Email Log Days Kept","Días a mantener el Registro de Correos"
|
32 |
+
"Enable Debug Logging","Activar Registro de Depuración"
|
33 |
+
"If yes, a log file will be written with debug information.","Si sí, un archivo de registros se escribirá con información de depuración."
|
34 |
+
"Save settings before running this test.","Guarda la configuración antes de ejecutar esta prueba."
|
35 |
+
"Compatible Email Services","Servicios de Correo Compatibles"
|
36 |
+
"Running SMTP Pro Self Test","Ejecutando Auto-Prueba de SMTP Pro"
|
37 |
+
"SMTP Pro Self Test Results","Resultados de Auto-Prueba de SMTP Pro"
|
38 |
+
"Extension disabled, cannot run test.","Extensión desactivada, no se pudo ejecutar la prueba."
|
39 |
+
"Checking config re-writes have not clashed.","Verificando que los re-writes de la configuración no tengan conflictos."
|
40 |
+
""Detected overwrite conflict: %s","Detectado un conflicto de sobreescritura: %s"
|
41 |
+
"Raw connection test for SMTP options.","Prueba de conexión bruta para las opciones SMTP."
|
42 |
+
"Complete","Completo"
|
43 |
+
"Failed to connect to SMTP server. Reason: ","Falló la conexión al servidor SMTP. Razón: "
|
44 |
+
"This extension requires an outbound SMTP connection on port: ","Esta extensión requiere una conexión de salida SMTP en el puerto: "
|
45 |
+
"Connection to Host SMTP server successful","Conexión exitosa al Host SMTP"
|
46 |
+
"Skipping raw connection test for non-SMTP options.","Omitiendo prueba de conexión bruta para opciones no-SMTP."
|
47 |
+
"Test Email From SMTP Pro Magento Extension","Correo de Prueba de la Extensión SMTP Pro de Magento"
|
48 |
+
"Actual email sending test...","Prueba de envío real de correos..."
|
49 |
+
" from: "," de: "
|
50 |
+
"Test email was sent successfully","Correo de prueba enviado con éxito"
|
51 |
+
"Failed to find transport for test.","Fallo al encontrar transporte para prueba."
|
52 |
+
"Unable to send test email.","No se puede enviar el correo de prueba."
|
53 |
+
"Exception message was: %s","El mensaje de excepción fue: %s"
|
54 |
+
"Please check the user guide for frequent error messages and their solutions.","Por favor revise la guía de usuario para mensajes de error frecuentes y sus soluciones."
|
55 |
+
"Test email was not sent successfully: %s","El correo de prueba no fue enviado exitosamente: %s"
|
56 |
+
"See exception log for more details.","Revisa el registro de excepciones para más detalles."
|
57 |
+
"Checking that a template exists for the default locale and that email communications are enabled...","Revisando que exista una plantilla para el locale por defecto y que las comunicaciones por correo estén activadas..."
|
58 |
+
"Default templates exist.","Existen plantillas por defecto."
|
59 |
+
"Email communications are enabled.","Comunicaciones por correo están activadas."
|
60 |
+
"Default templates exist and email communications are enabled.","Existen plantillas por defecto y comunicaciones por correo están activadas."
|
61 |
+
"Could not find default template, or template not valid, or email communications disabled in Advanced > System settings.","No se pudo encontrar la plantilla por defecto, o no es válida; o las comunicaciones por correo están desactivadas en Avanzado > Configuraciones de Sistema."
|
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.","Por favor revisa que tienes plantillas para tus correos. Estas se encuentran en app/locale, o definidas en Sistema > Correos Transaccionales. Revisa también Avanzado > Configuraciones de Sistema para asegurar que las comunicaciones por correo está están activas."
|
63 |
+
"Could not find default template, or template not valid, or email communications disabled in Advanced > System settings","No se pudo encontrar la plantilla por defecto, o no es válida; o las comunicaciones por correo están desactivadas en Avanzado > Configuraciones de Sistema"
|
64 |
+
"Could not test default template validity.","No se pudo probar la validez de la plantilla por defecto."
|
65 |
+
"Please check that you have templates in place for your emails. These are in app/locale, or custom defined in System > Transaction Emails.","or favor revisa que tienes plantillas para tus correos. Estas se encuentran en app/locale, o definidas en Sistema > Correos Transaccionales."
|
66 |
+
"Could not test default template validity: %s","No se pudo probar la validez de la plantilla por defecto: %s"
|
67 |
+
"Checking that tables are created...","Verificando que las tablas sean creadas..."
|
68 |
+
"Could not find required database tables.","No se pudo encontrar las tablas requeridas en la base de datos."
|
69 |
+
"Please try to manually re-run the table creation script. For assistance please contact us.","Por favor trata de volver a ejecutar el script de creación de tablas. Para asistencia, por favor contáctanos."
|
70 |
+
"Required database tables exist.","Las tablas requeridas existen en la base de datos."
|
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.","Pruebas completas, si aún experimentas dificultades, por favor visita <a target='_blank' href='http://magesmtppro.com'>la página de soporte</a> o contáctame vía <a target='_blank' href='mailto:support@aschroder.com'>support@aschroder.com</a> para soporte."
|
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.","Pruebas fallidas, por favor revisa los problemas reportados y si necesitas más ayuda, visita <a target='_blank' href='http://magesmtppro.com'>la página de soporte</a> o contáctame via <a target='_blank' href='mailto:support@aschroder.com'>support@aschroder.com</a> para soporte."
|
package.xml
CHANGED
@@ -1,2 +1,2 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
-
<package><name>ASchroder_SMTPPro</name><version>2.0.
|
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>
|