Version Notes
See magesmtppro.com for full release notes
Download this release
Release Info
Developer | ASchroder |
Extension | ASchroder_SMTPPro |
Version | 2.0.7 |
Comparing to | |
See all releases |
Code changes from version 2.0.6 to 2.0.7
- README.md +2 -0
- app/code/local/Aschroder/SMTPPro/Block/Log/Grid.php +1 -0
- app/code/local/Aschroder/SMTPPro/Block/Log/View.php +2 -2
- app/code/local/Aschroder/SMTPPro/Helper/Mysql4/Install.php +22 -19
- app/code/local/Aschroder/SMTPPro/Model/Email/Queue.php +2 -1
- app/code/local/Aschroder/SMTPPro/controllers/Smtp/LogController.php +11 -2
- app/code/local/Aschroder/SMTPPro/controllers/Smtp/TestController.php +10 -0
- app/code/local/Aschroder/SMTPPro/etc/config.xml +1 -1
- app/locale/de_DE/Aschroder_SMTPPro.csv +77 -0
- app/locale/fr_FR/Aschroder_SMTPPro.csv +77 -0
- modman +6 -0
- package.xml +1 -1
README.md
CHANGED
@@ -11,6 +11,8 @@ 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
|
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 |
+
- fr_FR translations thanks to [@aymencis Aymen Hajri](https://github.com/aymencis)
|
15 |
+
- de_DE translations thanks to [@quafzi Thomas Birke](https://github.com/quafzi)
|
16 |
|
17 |
|
18 |
FAQ
|
app/code/local/Aschroder/SMTPPro/Block/Log/Grid.php
CHANGED
@@ -38,6 +38,7 @@ class Aschroder_SMTPPro_Block_Log_Grid extends Mage_Adminhtml_Block_Widget_Grid
|
|
38 |
'header' => Mage::helper('adminhtml')->__('Sent'),
|
39 |
'width' => '60px',
|
40 |
'index' => 'log_at',
|
|
|
41 |
));
|
42 |
$this->addColumn('subject', array(
|
43 |
'header' => Mage::helper('adminhtml')->__('Subject'),
|
38 |
'header' => Mage::helper('adminhtml')->__('Sent'),
|
39 |
'width' => '60px',
|
40 |
'index' => 'log_at',
|
41 |
+
'type' => 'datetime',
|
42 |
));
|
43 |
$this->addColumn('subject', array(
|
44 |
'header' => Mage::helper('adminhtml')->__('Subject'),
|
app/code/local/Aschroder/SMTPPro/Block/Log/View.php
CHANGED
@@ -24,6 +24,6 @@ class Aschroder_SMTPPro_Block_Log_View extends Mage_Catalog_Block_Product_Abstra
|
|
24 |
}
|
25 |
|
26 |
public function getBackUrl() {
|
27 |
-
return Mage::helper('adminhtml')->getUrl('*/
|
28 |
}
|
29 |
-
}
|
24 |
}
|
25 |
|
26 |
public function getBackUrl() {
|
27 |
+
return Mage::helper('adminhtml')->getUrl('*/smtp_log');
|
28 |
}
|
29 |
+
}
|
app/code/local/Aschroder/SMTPPro/Helper/Mysql4/Install.php
CHANGED
@@ -183,29 +183,32 @@ class Aschroder_SMTPPro_Helper_Mysql4_Install extends Mage_Core_Helper_Abstract
|
|
183 |
public function createInstallNotice($msg_title, $msg_desc, $url = null, $severity = null)
|
184 |
{
|
185 |
$message = Mage::getModel('adminnotification/inbox');
|
186 |
-
$message
|
|
|
|
|
187 |
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
|
|
209 |
|
210 |
return $this;
|
211 |
}
|
183 |
public function createInstallNotice($msg_title, $msg_desc, $url = null, $severity = null)
|
184 |
{
|
185 |
$message = Mage::getModel('adminnotification/inbox');
|
186 |
+
if( $message ){
|
187 |
+
|
188 |
+
$message->setDateAdded(date("c", time () ));
|
189 |
|
190 |
+
if ($url == null) {
|
191 |
+
$url = "https://github.com/aschroder/Magento-SMTP-Pro-Email-Extension";
|
192 |
+
}
|
193 |
|
194 |
+
if ($severity === null) {
|
195 |
+
$severity = Mage_AdminNotification_Model_Inbox::SEVERITY_NOTICE;
|
196 |
+
}
|
197 |
|
198 |
+
// If problems occured increase severity and append logged messages.
|
199 |
+
if (Mage::helper('smtppro/mysql4_install' )->hasProblems ()) {
|
200 |
+
$severity = Mage_AdminNotification_Model_Inbox::SEVERITY_MINOR;
|
201 |
+
$msg_title .= " Problems may have occured during installation.";
|
202 |
+
$msg_desc .= " " . Mage::helper('smtppro/mysql4_install' )->getProblemsString ();
|
203 |
+
Mage::helper('smtppro/mysql4_install' )->clearProblems ();
|
204 |
+
}
|
205 |
|
206 |
+
$message->setTitle($msg_title);
|
207 |
+
$message->setDescription($msg_desc);
|
208 |
+
$message->setUrl($url);
|
209 |
+
$message->setSeverity($severity);
|
210 |
+
$message->save ();
|
211 |
+
}
|
212 |
|
213 |
return $this;
|
214 |
}
|
app/code/local/Aschroder/SMTPPro/Model/Email/Queue.php
CHANGED
@@ -91,7 +91,8 @@ class Aschroder_SMTPPro_Model_Email_Queue extends Mage_Core_Model_Email_Queue {
|
|
91 |
$transport = new Varien_Object();
|
92 |
Mage::dispatchEvent('aschroder_smtppro_queue_before_send', array(
|
93 |
'mail' => $mailer,
|
94 |
-
'transport' => $transport
|
|
|
95 |
));
|
96 |
|
97 |
if ($transport->getTransport()) { // if set by an observer, use it
|
91 |
$transport = new Varien_Object();
|
92 |
Mage::dispatchEvent('aschroder_smtppro_queue_before_send', array(
|
93 |
'mail' => $mailer,
|
94 |
+
'transport' => $transport,
|
95 |
+
'message' => $message
|
96 |
));
|
97 |
|
98 |
if ($transport->getTransport()) { // if set by an observer, use it
|
app/code/local/Aschroder/SMTPPro/controllers/Smtp/LogController.php
CHANGED
@@ -38,6 +38,15 @@ class Aschroder_SMTPPro_Smtp_LogController
|
|
38 |
->renderLayout();
|
39 |
|
40 |
|
41 |
-
}
|
42 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
43 |
}
|
38 |
->renderLayout();
|
39 |
|
40 |
|
41 |
+
}
|
42 |
+
|
43 |
+
/**
|
44 |
+
* Check is allowed access to action
|
45 |
+
*
|
46 |
+
* @return bool
|
47 |
+
*/
|
48 |
+
protected function _isAllowed() {
|
49 |
+
return Mage::getSingleton('admin/session')->isAllowed('admin/system/tools/smtppro');
|
50 |
+
}
|
51 |
+
|
52 |
}
|
app/code/local/Aschroder/SMTPPro/controllers/Smtp/TestController.php
CHANGED
@@ -256,5 +256,15 @@ class Aschroder_SMTPPro_Smtp_TestController extends Mage_Adminhtml_Controller_Ac
|
|
256 |
return $expected != $actual &&
|
257 |
!is_subclass_of($actual, $expected);
|
258 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
259 |
}
|
260 |
|
256 |
return $expected != $actual &&
|
257 |
!is_subclass_of($actual, $expected);
|
258 |
}
|
259 |
+
|
260 |
+
/**
|
261 |
+
* Check is allowed access to action
|
262 |
+
*
|
263 |
+
* @return bool
|
264 |
+
*/
|
265 |
+
protected function _isAllowed() {
|
266 |
+
return Mage::getSingleton('admin/session')->isAllowed('admin/system/tools/smtppro');
|
267 |
+
}
|
268 |
+
|
269 |
}
|
270 |
|
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>
|
11 |
<config>
|
12 |
<modules>
|
13 |
<Aschroder_SMTPPro>
|
14 |
+
<version>2.0.7</version>
|
15 |
</Aschroder_SMTPPro>
|
16 |
</modules>
|
17 |
<frontend>
|
app/locale/de_DE/Aschroder_SMTPPro.csv
ADDED
@@ -0,0 +1,77 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
"SMTPPro - Email Log","SMTPPro - E-Mail-Log"
|
2 |
+
"SMTP Pro Email Settings","SMTP Pro E-Mail-Einstellungen"
|
3 |
+
"Email Log","E-Mail-Log"
|
4 |
+
"Aschroder Extensions","Aschroder Extensions"
|
5 |
+
"SMTP Pro","SMTP Pro"
|
6 |
+
"General Settings","Allgemeine Einstellungen"
|
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 E-Mail Erweiterung</span> </div> Konfigurieren Sie hier Ihre SMTP-Verbindung. Sollten Sie Fragen haben oder Hilfe benötigen, besuchen Sie <a href='http://magesmtppro.com' target='_blank'>magesmtppro.com</a>."
|
8 |
+
"Email Connection","E-Mail-Verbindung"
|
9 |
+
"Google Apps Email Address","Google Apps E-Mail-Adresse"
|
10 |
+
"Google Apps Password","Google Apps Passwort"
|
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>","Geben Sie Benutzername und Passwort für Ihr Konto bei Google Apps oder Gmail ein. Tipps zur Konfiguration finden Sie unter<a href='http://magesmtppro.com' target='_blank'>magesmtppro.com</a>"
|
12 |
+
"SendGrid Username","SendGrid Benutzername"
|
13 |
+
"SendGrid Password","SendGrid Passwort"
|
14 |
+
"Input your SendGrid username and password here. For more information visit <a href='http://sendgrid.com' target='_blank'>SendGrid</a>","Geben Sie Benutzername und Passwort Ihres SendGrid-Kontos ein. Für weitere Informationen besuchen Sie <a href='http://sendgrid.com' target='_blank'>SendGrid</a>"
|
15 |
+
"Amazon SES Access Key","Amazon SES Access Key"
|
16 |
+
"Amazon SES Secret Key","Amazon SES Secret Key"
|
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>","Die Unterstützung für Amazon SES in SMTP Pro ist begrenzt und am besten für Entwicklungs- und Testzwecke geeignet. Für eine vollständige Integration mit Regionenauswahl, Fehlerlogging und Statistiken nutzen Sie die Premium-Version: <a href='http://magesend.com' target='_blank'>MageSend</a>"
|
18 |
+
"Authentication","Anmeldung"
|
19 |
+
"Username","Benutzername"
|
20 |
+
"Password","Passwort"
|
21 |
+
"Host","Host"
|
22 |
+
"Port","Port"
|
23 |
+
"SSL Security","SSL-Sicherheit"
|
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>","In diesem Abschnitt lassen sich eigene SMTP-Server konfigurieren. Weitere Informationen zu den einzelnen Optionen sowie Hinweise zur Fehlersuche finden Sie unter <a href='http://magesmtppro.com' target='_blank'>magesmtppro.com</a>"
|
25 |
+
"Logging and Debugging","Logging and Debugging"
|
26 |
+
"Please only use these settings if you are a software developer or server admin.","Verwenden Sie diese Einstellungen nur, wenn Sie Entwickler oder Server-Admin sind"
|
27 |
+
"Log Emails","Log Emails"
|
28 |
+
"This will log all outbound emails. View from System->Tools->SMTPPro - Email Log.","Protokolliert alle ausgehenden Mails unter System->Tools->SMTPPro - E-Mail-Log."
|
29 |
+
"Clean Email Logs","E-Mail-Logs leeren"
|
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.","Ist dies aktiviert, werden alte Einträge aus dem E-Mail-Log gelöscht. Dafür muss der Magento-Cronjob unter system/log/enabled aktiviert sein."
|
31 |
+
"Email Log Days Kept","Maximales Alter der E-Mail-Logs"
|
32 |
+
"Enable Debug Logging","Debug-Logging aktivieren"
|
33 |
+
"If yes, a log file will be written with debug information to file var/log/aschroder_smtppro.log.","Wenn dies aktiviert ist, wird ein Logfile mit Debug-Informationen unter var/log/aschroder_smtppro.log geschrieben."
|
34 |
+
"Save settings before running this test.","Vor dem Testen müssen die Einstellungen gespeichert werden."
|
35 |
+
"Compatible Email Services","Kompatible E-Mail-Services"
|
36 |
+
"Running SMTP Pro Self Test","Selbsttest"
|
37 |
+
"SMTP Pro Self Test Results","Ergebnisse des SMTP Pro Selbsttests"
|
38 |
+
"Extension disabled, cannot run test.","Erweiterung ist deaktiviert, Test kann nicht durchgeführt werden."
|
39 |
+
"Checking config re-writes have not clashed.","Es gab keine Konfigurationskonflikte."
|
40 |
+
"Detected overwrite conflict: %s","Es wurde ein Konflikt gefunden: %s"
|
41 |
+
"Raw connection test for SMTP options.","Verbindungstest für SMTP-Optionen"
|
42 |
+
"Complete","Vollständig"
|
43 |
+
"Failed to connect to SMTP server. Reason: ","Verbindung zum SMTP-Server fehlgeschlagen. Ursache: "
|
44 |
+
"This extension requires an outbound SMTP connection on port: ","Diese Erweiterung benötigt eine ausgehende SMTP-Verbindung auf Port: "
|
45 |
+
"Connection to Host SMTP server successful","Verbindungsaufbau zum SMTP-Server war erfolgreich"
|
46 |
+
"Skipping raw connection test for non-SMTP options.","Verbindungstest für Nicht-SMTP-Verbindungen übersprungen"
|
47 |
+
"Test Email From SMTP Pro Magento Extension","Teste E-Mail mit der SMTP Pro Magento Extension"
|
48 |
+
"Actual email sending test...","Teste E-Mail-Versand..."
|
49 |
+
" from: "," von: "
|
50 |
+
"Test email was sent successfully","Die Testmail wurde erfolgreich versendet"
|
51 |
+
"Failed to find transport for test.","Übertragungsweg für den Test wurde nicht gefunden."
|
52 |
+
"Unable to send test email.","Die Testmail konnte nicht gesendet werden."
|
53 |
+
"Exception message was: %s","Fehlermeldung: %s"
|
54 |
+
"Please check the user guide for frequent error messages and their solutions.","Bitte suchen Sie im User Guide nach häufigen Fehlern und deren Lösungen"
|
55 |
+
"Test email was not sent successfully: %s","Die Testmail konnte nicht gesendet werden: %s"
|
56 |
+
"See exception log for more details.","Bitte sehen Sie im exception.log nach Details"
|
57 |
+
"Checking that a template exists for the default locale and that email communications are enabled...","Prüfe, ob für die aktuelle Sprache ein Template existiert und ob die E-Mail-Kommunikation aktiviert ist."
|
58 |
+
"Default templates exist.","Standard-Template existiert"
|
59 |
+
"Email communications are enabled.","E-Mail-Kommunikation ist aktiviert."
|
60 |
+
"Default templates exist and email communications are enabled.","Standard-Template existiert und die E-Mail-Kommunikation ist aktiviert."
|
61 |
+
"Could not find default template, or template not valid, or email communications disabled in Advanced > System settings.","Standard-Template wurde nicht gefunden oder ist ungültig oder die E-Mail-Kommunikation ist nicht aktiviert unter Advanced > System settings."
|
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.","Bitte prüfen Sie, ob Templates für Ihre E-Mails existieren. Sie finden diese unter app/locale oder unter System > Transaktions-E-Mails. Prüfen Sie auch, ob die E-Mail-Kommunikation unter Erweitert > System aktiviert ist."
|
63 |
+
"Could not find default template, or template not valid, or email communications disabled in Advanced > System settings","Standard-Template wurde nicht gefunden oder ist ungültig oder die E-Mail-Kommunikation ist nicht aktiviert unter Advanced > System settings"
|
64 |
+
"Could not test default template validity.","Die Gültigkeit des Standard-Templates konnte nicht geprüft werden."
|
65 |
+
"Please check that you have templates in place for your emails. These are in app/locale, or custom defined in System > Transaction Emails.","Bitte prüfen Sie, ob Templates für Ihre E-Mails existieren. Sie finden diese unter app/locale oder unter System > Transaktions-E-Mails."
|
66 |
+
"Could not test default template validity: %s","Template-Gültigkeit konnte nicht geprüft werden: %s"
|
67 |
+
"Checking that tables are created...","Prüfe, ob Tabellen angelegt wurden..."
|
68 |
+
"Could not find required database tables.","Die benötigten Datenbank-Tabellen wurden nicht gefunden."
|
69 |
+
"Please try to manually re-run the table creation script. For assistance please contact us.","Bitte lassen Sie das Skript zum Anlegen der Tabellen manuell erneut laufen. Für Hilfe kontakteren Sie uns bitte."
|
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.","Die Tests sind abgeschlossen, sollte es weiterhin Probleme geben, besuchen sie <a target='_blank' href='http://magesmtppro.com'>die Support-Seite</a> oder kontaktieren Sie mich über <a target='_blank' href='mailto:support@aschroder.com'>support@aschroder.com</a>."
|
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.","Die Tests sind fehlgeschlagen, bitte prüfen Sie die beanstandeten Probleme, besuchen Sie <a target='_blank' href='http://magesmtppro.com'>die Support-Seite</a>, wenn Sie weitere Hilfe benötigen oder kontaktieren Sie mich unter <a target='_blank' href='mailto:support@aschroder.com'>support@aschroder.com</a>."
|
73 |
+
"Disabled","Deaktiviert"
|
74 |
+
"MailUp Username","MailUp-Benutzername"
|
75 |
+
"MailUp Password","MailUp-Passwort"
|
76 |
+
"Input your MailUp username and password here. For more information visit <a href='http://mailup.com' target='_blank'>MailUp</a>","Geben Sie Benutzername und Passwort Ihres MailUp-Kontos ein. Für weitere Informationen besuchen Sie <a href='http://mailup.com' target='_blank'>MailUp</a>"
|
77 |
+
"Google Apps or Gmail","Google Apps oder Gmail"
|
app/locale/fr_FR/Aschroder_SMTPPro.csv
ADDED
@@ -0,0 +1,77 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
"SMTPPro - Email Log","SMTPPro - Messages envoyés"
|
2 |
+
"SMTP Pro Email Settings","SMTP Pro Paramètres d'envoi"
|
3 |
+
"Email Log","Messages envoyés"
|
4 |
+
"Aschroder Extensions","Aschroder Extensions"
|
5 |
+
"SMTP Pro","SMTP Pro"
|
6 |
+
"General Settings","Réglages Généraux"
|
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> 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>."
|
8 |
+
"Email Connection","Connexion Mail"
|
9 |
+
"Google Apps Email Address","Adresse Mail Google Apps"
|
10 |
+
"Google Apps Password","Mot de passe 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>","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>"
|
12 |
+
"SendGrid Username","Nom d'utilisateurSendGrid"
|
13 |
+
"SendGrid Password","Mot de passe SendGrid"
|
14 |
+
"Input your SendGrid username and password here. For more information visit <a href='http://sendgrid.com' target='_blank'>SendGrid</a>","Input your SendGrid username and password here. For more information visit <a href='http://sendgrid.com' target='_blank'>SendGrid</a>"
|
15 |
+
"Amazon SES Access Key","Clé d'accès Amazon SES"
|
16 |
+
"Amazon SES Secret Key","Clé secrete 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>","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>"
|
18 |
+
"Authentication","Authentification"
|
19 |
+
"Username","Nom d'utilisateur"
|
20 |
+
"Password","Mot de passe"
|
21 |
+
"Host","Hote"
|
22 |
+
"Port","Port"
|
23 |
+
"SSL Security","Sécurité 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>","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>"
|
25 |
+
"Logging and Debugging","Journal d'erreur et débogage"
|
26 |
+
"Please only use these settings if you are a software developer or server admin.","S'il vous plaît utilisez uniquement ces paramètres si vous êtes un développeur de logiciel ou Admin Serveur."
|
27 |
+
"Log Emails","Messages envoyés"
|
28 |
+
"This will log all outbound emails. View from System->Tools->SMTPPro - Email Log.","Cela va enregistrer tous les e-mails sortants. vue depuis Systéme->Outils->SMTPPro - Messages envoyés."
|
29 |
+
"Clean Email Logs","Nettoyer les journaux Email"
|
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.","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."
|
31 |
+
"Email Log Days Kept","Jours de conservation des journaux d'envoi"
|
32 |
+
"Enable Debug Logging","Activer l'enregistrement de débogage"
|
33 |
+
"If yes, a log file will be written with debug information to file var/log/aschroder_smtppro.log.","If yes, a log file will be written with debug information to file var/log/aschroder_smtppro.log."
|
34 |
+
"Save settings before running this test.","Enregistrer les paramètres avant de lancer ce test."
|
35 |
+
"Compatible Email Services","Services de messagerie compatibles"
|
36 |
+
"Running SMTP Pro Self Test","Lancer SMTP Pro Auto-test"
|
37 |
+
"SMTP Pro Self Test Results","Résultats de SMTP Pro Auto-test"
|
38 |
+
"Extension disabled, cannot run test.","Extension désactivée impossible de lancer le test."
|
39 |
+
"Checking config re-writes have not clashed.","Vérification des réécritures de configuration ne sont pas écrasé."
|
40 |
+
"Detected overwrite conflict: %s","Conflit d'écrasement détecté: %s"
|
41 |
+
"Raw connection test for SMTP options.","Test de connexion pour les paramètres SMTP."
|
42 |
+
"Complete","Terminé"
|
43 |
+
"Failed to connect to SMTP server. Reason: ","Impossible de se connecter au serveur SMTP. La cause: "
|
44 |
+
"This extension requires an outbound SMTP connection on port: ","Cette extension nécessite une connexion SMTP sortante sur le port: "
|
45 |
+
"Connection to Host SMTP server successful","Connexion à l'hôte serveur SMTP avec succès"
|
46 |
+
"Skipping raw connection test for non-SMTP options.","Ignorer le test de connexion pour les options non-SMTP."
|
47 |
+
"Test Email From SMTP Pro Magento Extension","Test d'envoi depuis SMTP Pro Magento Extension"
|
48 |
+
"Actual email sending test...","Test d'envoi réel..."
|
49 |
+
" from: "," de: "
|
50 |
+
"Test email was sent successfully","Email de test a été envoyé avec succès"
|
51 |
+
"Failed to find transport for test.","Impossible d'envoyer le test."
|
52 |
+
"Unable to send test email.","Impossible d'envoyer l'email de test."
|
53 |
+
"Exception message was: %s","Message d'exception était: %s"
|
54 |
+
"Please check the user guide for frequent error messages and their solutions.","S'il vous plaît vérifier le mode d'emploi pour les messages d'erreur fréquents et leurs solutions."
|
55 |
+
"Test email was not sent successfully: %s","Email de test n'a pas été envoyé avec succès: %s"
|
56 |
+
"See exception log for more details.","Voir journal d'exception pour plus de détails."
|
57 |
+
"Checking that a template exists for the default locale and that email communications are enabled...","Vérification qu'il existe un modèle pour la langue par défaut et que les communications par courriel sont activés..."
|
58 |
+
"Default templates exist.","Les modèles par défaut existent."
|
59 |
+
"Email communications are enabled.","Les communications par courriel sont activés."
|
60 |
+
"Default templates exist and email communications are enabled.","Les modèles par défaut existent et communications par courriel sont activés."
|
61 |
+
"Could not find default template, or template not valid, or email communications disabled in Advanced > System settings.","Impossible de trouver le modèle par défaut, ou le modèle n'est pas valide, ou les communications par courriel sont désactivés dans Avancé> Paramètres du système."
|
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.","Impossible de tester la validité du modèle par défaut."
|
65 |
+
"Please check that you have templates in place for your emails. These are in app/locale, or custom defined in System > Transaction Emails.","S'il vous plaît vérifier que vous disposez de modèles en place pour vos e-mails. Ce sont dans app /locale, ou définis manuellement dans Système> mails de transaction."
|
66 |
+
"Could not test default template validity: %s","Impossible de tester la validité du modèle par défaut: %s"
|
67 |
+
"Checking that tables are created...","Vérifier que les tables sont créées..."
|
68 |
+
"Could not find required database tables.","Impossible de trouver des tables de base de données requises."
|
69 |
+
"Please try to manually re-run the table creation script. For assistance please contact us.","S'il vous plaît essayer d'exécuter le script de création de table de nouveau manuellement. Si besoin d'aide s'il vous plaît contactez-nous."
|
70 |
+
"Required database tables exist.","Tables de base de données requises existent."
|
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."
|
73 |
+
"Disabled","Désactivé"
|
74 |
+
"MailUp Username","Nom d'utilisateur MailUp"
|
75 |
+
"MailUp Password","Mot de passe MailUp"
|
76 |
+
"Input your MailUp username and password here. For more information visit <a href='http://mailup.com' target='_blank'>MailUp</a>","Input your MailUp username and password here. For more information visit <a href='http://mailup.com' target='_blank'>MailUp</a>"
|
77 |
+
"Google Apps or Gmail","Google Apps ou Gmail"
|
modman
CHANGED
@@ -6,4 +6,10 @@
|
|
6 |
app/etc/modules/Aschroder_SMTPPro.xml app/etc/modules/Aschroder_SMTPPro.xml
|
7 |
app/code/local/Aschroder/SMTPPro/ app/code/local/Aschroder/SMTPPro/
|
8 |
app/design/adminhtml/base/default/template/smtppro/ app/design/adminhtml/default/default/template/smtppro/
|
|
|
9 |
app/locale/en_US/Aschroder_SMTPPro.csv app/locale/en_US/Aschroder_SMTPPro.csv
|
|
|
|
|
|
|
|
|
|
6 |
app/etc/modules/Aschroder_SMTPPro.xml app/etc/modules/Aschroder_SMTPPro.xml
|
7 |
app/code/local/Aschroder/SMTPPro/ app/code/local/Aschroder/SMTPPro/
|
8 |
app/design/adminhtml/base/default/template/smtppro/ app/design/adminhtml/default/default/template/smtppro/
|
9 |
+
app/locale/de_DE/Aschroder_SMTPPro.csv app/locale/de_DE/Aschroder_SMTPPro.csv
|
10 |
app/locale/en_US/Aschroder_SMTPPro.csv app/locale/en_US/Aschroder_SMTPPro.csv
|
11 |
+
app/locale/fr_FR/Aschroder_SMTPPro.csv app/locale/fr_FR/Aschroder_SMTPPro.csv
|
12 |
+
app/locale/es_ES/Aschroder_SMTPPro.csv app/locale/es_ES/Aschroder_SMTPPro.csv
|
13 |
+
app/locale/nl_NL/Aschroder_SMTPPro.csv app/locale/nl_NL/Aschroder_SMTPPro.csv
|
14 |
+
app/locale/pt_PT/Aschroder_SMTPPro.csv app/locale/pt_PT/Aschroder_SMTPPro.csv
|
15 |
+
app/locale/tr_TR/Aschroder_SMTPPro.csv app/locale/tr_TR/Aschroder_SMTPPro.csv
|
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.7</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>2015-10-30</date><time>2:46:06</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="d24636ce87d3d3620558f894823bcf34"/><file name="composer.json" hash="e56ab248e07b595d13248cd2dcf65b3d"/><file name="modman" hash="6c379d241449e292f9724c45b86cfa5a"/><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="1c07e09837ec9f727562e3ecb4247028"/><file name="Test.php" hash="dcba2ff6eebc87b9b4eed584fde5f47e"/></dir><dir name="Log"><file name="Grid.php" hash="cc4aa8612419c6c70692f0d55005cb9d"/><file name="View.php" hash="f2f57d190e254ea64c9a1ef8fe4dea33"/></dir></dir><dir name="controllers"><dir name="Smtp"><file name="LogController.php" hash="fc12c656f35514300b8c38d02ebbb6f1"/><file name="TestController.php" hash="025661ff8961359ff06a65e3fc444dfc"/></dir></dir><dir name="etc"><file name="config.xml" hash="65ac932b66aac881e91187414745065a"/><file name="system.xml" hash="2751ea05a44e4b74e506989a5a6df482"/></dir><dir name="Helper"><file name="Data.php" hash="f9a3e64aa6cfb555f8017c2799483536"/><dir name="Mysql4"><file name="Install.php" hash="4498e2905f454582e7c9db00f1e9edc4"/></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="3578ee0fb35100abee85efba225468f7"/><dir name="Email"><file name="Log.php" hash="99d2a9634e8668cf756683cc85f47cd5"/><file name="Queue.php" hash="98f8521b4c1b9c7f3b0a34b713bcaa1e"/><file name="Template.php" hash="c0d020eeea27ffcd90dfad8e50202a43"/></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="Queue.php" hash="02fef1f432f3c6d17b3be088c7fb5f98"/><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="de_DE"><file name="Aschroder_SMTPPro.csv" hash="02a6845c78335beb0158ba3cb28b438a"/></dir><dir name="en_US"><file name="Aschroder_SMTPPro.csv" hash="5757e1e853807c5cc414904075329dd1"/></dir><dir name="es_ES"><file name="Aschroder_SMTPPro.csv" hash="8cb70211a968f871d95d30a720d0469a"/></dir><dir name="fr_FR"><file name="Aschroder_SMTPPro.csv" hash="d3fdbf2a92a9368cad1564ac6718772b"/></dir><dir name="nl_NL"><file name="Aschroder_SMTPPro.csv" hash="6419f7359ba05b4883a0440291c3f859"/></dir><dir name="pt_BR"><file name="Aschroder_SMTPPro.csv" hash="080e0fe0d4dd57c8aec409a53bb4e68e"/></dir><dir name="tr_TR"><file name="Aschroder_SMTPPro.csv" hash="ba128b4449075962430968ee6355728c"/></dir></dir></dir></target></contents></package>
|