X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=templates%2FCRM%2FAdmin%2FForm%2FSetting%2FSmtp.tpl;h=e31f13d17681ad715129c50a405da8145a0ee452;hb=2c4c49caea46abf0d61de310a8715f9410d81de4;hp=7b6402bb5288b2ba8459223586796a98956862b6;hpb=e9aca61e8b08d5ae372621c4397108b8f2ec28ba;p=civicrm-core.git diff --git a/templates/CRM/Admin/Form/Setting/Smtp.tpl b/templates/CRM/Admin/Form/Setting/Smtp.tpl index 7b6402bb52..e31f13d176 100644 --- a/templates/CRM/Admin/Form/Setting/Smtp.tpl +++ b/templates/CRM/Admin/Form/Setting/Smtp.tpl @@ -1,8 +1,8 @@ {* +--------------------------------------------------------------------+ - | CiviCRM version 4.6 | + | CiviCRM version 4.7 | +--------------------------------------------------------------------+ - | Copyright CiviCRM LLC (c) 2004-2014 | + | Copyright CiviCRM LLC (c) 2004-2015 | +--------------------------------------------------------------------+ | This file is a part of CiviCRM. | | | @@ -25,11 +25,9 @@ *}
- {ts}

CiviCRM offers several options to send emails. The default option should work fine on linux systems. If you are using windows, you probably need to enter settings for your SMTP/Sendmail server. You can send a test email to check your settings by clicking "Save and Send Test Email". If you're unsure of the correct values, check with your system administrator, ISP or hosting provider.

- -

If you do not want users to send outbound mail from CiviCRM, select "Disable Outbound Email". NOTE: If you disable outbound email, and you are using Online Contribution pages or online Event Registration - you will need to disable automated receipts and registration confirmations.

- -

If you choose Redirect to Database, all emails will be recorded as archived mailings instead of being sent out. They can be found in the civicrm_mailing_spool table in the CiviCRM database.

{/ts} +

{ts}CiviCRM offers several options to send emails. The default option should work fine on linux systems. If you are using windows, you probably need to enter settings for your SMTP/Sendmail server. You can send a test email to check your settings by clicking "Save and Send Test Email". If you're unsure of the correct values, check with your system administrator, ISP or hosting provider.{/ts}

+

{ts}If you do not want users to send outbound mail from CiviCRM, select "Disable Outbound Email". NOTE: If you disable outbound email, and you are using Online Contribution pages or online Event Registration - you will need to disable automated receipts and registration confirmations.{/ts}

+

{ts}If you choose Redirect to Database, all emails will be recorded as archived mailings instead of being sent out. They can be found in the civicrm_mailing_spool table in the CiviCRM database.{/ts}

@@ -45,13 +43,13 @@ @@ -93,8 +91,6 @@
{include file="CRM/common/formButtons.tpl"} -   - {$form._qf_Smtp_refresh_test.html}
@@ -112,7 +108,7 @@ case "0": $("#bySMTP").show( ); $("#bySendmail").hide( ); - $("#_qf_Smtp_refresh_test").show( ); + $("#_qf_Smtp_refresh_test").prop('disabled', false); if (mailSetting == '5') { alert(archiveWarning); } @@ -120,14 +116,14 @@ case "1": $("#bySMTP").hide( ); $("#bySendmail").show( ); - $("#_qf_Smtp_refresh_test").show( ); + $("#_qf_Smtp_refresh_test").prop('disabled', false); if (mailSetting == '5') { alert(archiveWarning); } break; case "3": $('.mailoption').hide(); - $("#_qf_Smtp_refresh_test").show( ); + $("#_qf_Smtp_refresh_test").prop('disabled', false); if (mailSetting == '5') { alert(archiveWarning); } @@ -135,7 +131,7 @@ default: $("#bySMTP").hide( ); $("#bySendmail").hide( ); - $("#_qf_Smtp_refresh_test").hide( ); + $("#_qf_Smtp_refresh_test").prop('disabled', true); } }
{$form.smtpServer.label} {$form.smtpServer.html}
- {ts}Enter the SMTP server (machine) name. EXAMPLE: smtp.example.com{/ts} + {ts}Enter the SMTP server (machine) name, such as "smtp.example.com". If the server uses SSL, add "ssl://" to the beginning of the server name, such as "ssl://smtp.example.com".{/ts}
{$form.smtpPort.label} {$form.smtpPort.html}
- {ts}The standard SMTP port is 25. You should only change that value if your SMTP server is running on a non-standard port.{/ts} + {ts}The most common SMTP port possibilities are 25, 465, and 587. Check with your mail provider for the appropriate one.{/ts}