xref: /webtrees/resources/views/admin/site-mail.phtml (revision 3282ccec56a881d70be6de130668873be2e11628)
11dcac87eSGreg Roach<?php
21dcac87eSGreg Roach
30c0910bfSGreg Roachuse Fisharebest\Webtrees\Http\RequestHandlers\ControlPanel;
4b4144a6dSGreg Roachuse Fisharebest\Webtrees\Http\RequestHandlers\EmailPreferencesAction;
51dcac87eSGreg Roachuse Fisharebest\Webtrees\I18N;
61dcac87eSGreg Roachuse Fisharebest\Webtrees\View;
7*3282ccecSGreg Roachuse Fisharebest\Webtrees\Webtrees;
81dcac87eSGreg Roach
91dcac87eSGreg Roach/**
101dcac87eSGreg Roach * @var string   $DKIM_DOMAIN
111dcac87eSGreg Roach * @var string   $DKIM_KEY
121dcac87eSGreg Roach * @var string   $DKIM_SELECTOR
131dcac87eSGreg Roach * @var string   $SMTP_ACTIVE
141dcac87eSGreg Roach * @var string   $SMTP_AUTH
151dcac87eSGreg Roach * @var string   $SMTP_AUTH_USER
161dcac87eSGreg Roach * @var string   $SMTP_FROM_NAME
171dcac87eSGreg Roach * @var string   $SMTP_HELO
181dcac87eSGreg Roach * @var string   $SMTP_HOST
191dcac87eSGreg Roach * @var string   $SMTP_PORT
201dcac87eSGreg Roach * @var string   $SMTP_SSL
211dcac87eSGreg Roach * @var string[] $mail_ssl_options
221dcac87eSGreg Roach * @var string[] $mail_transport_options
231dcac87eSGreg Roach * @var bool     $smtp_helo_valid
241dcac87eSGreg Roach * @var bool     $smtp_from_name_valid
251dcac87eSGreg Roach * @var string   $title
261dcac87eSGreg Roach */
271dcac87eSGreg Roach?>
28dd6b2bfcSGreg Roach
290c0910bfSGreg Roach<?= view('components/breadcrumbs', ['links' => [route(ControlPanel::class) => I18N::translate('Control panel'), $title]]) ?>
30dd6b2bfcSGreg Roach
31dd6b2bfcSGreg Roach<h1><?= $title ?></h1>
32dd6b2bfcSGreg Roach
33dbc19611SGreg Roach<div class="alert alert-info">
34*3282ccecSGreg Roach    <?= I18N::translate('See %s for more information.', '<a class="alert-link" href="' . e(Webtrees::URL_FAQ_EMAIL) . '">' . e(Webtrees::URL_FAQ_EMAIL) . '</a>') ?>
35dbc19611SGreg Roach</div>
36dd6b2bfcSGreg Roach
37b4144a6dSGreg Roach<form method="post" action="<?= e(route(EmailPreferencesAction::class)) ?>" class="form-horizontal">
38dd6b2bfcSGreg Roach    <?= csrf_field() ?>
39dd6b2bfcSGreg Roach
40dd6b2bfcSGreg Roach    <div class="row form-group">
41dd6b2bfcSGreg Roach        <label for="SMTP_ACTIVE" class="col-sm-3 col-form-label">
421dcac87eSGreg Roach            <?= /* I18N: A configuration setting */
431dcac87eSGreg Roach            I18N::translate('Messages') ?>
44dd6b2bfcSGreg Roach        </label>
45dd6b2bfcSGreg Roach        <div class="col-sm-9">
461dcac87eSGreg Roach            <?= view('components/select', ['name' => 'SMTP_ACTIVE', 'selected' => $SMTP_ACTIVE, 'options' => $mail_transport_options]) ?>
47dd6b2bfcSGreg Roach            <p class="small text-muted">
481dcac87eSGreg Roach                <?= /* I18N: Help text for the “Messages” site configuration setting */
491dcac87eSGreg Roach                I18N::translate('webtrees needs to send emails, such as password reminders and website notifications.') ?>
50dd6b2bfcSGreg Roach            </p>
51dd6b2bfcSGreg Roach        </div>
52dd6b2bfcSGreg Roach    </div>
53dd6b2bfcSGreg Roach
54dd6b2bfcSGreg Roach    <div class="row form-group">
55dd6b2bfcSGreg Roach        <label for="SMTP_FROM_NAME" class="col-sm-3 col-form-label">
561dcac87eSGreg Roach            <?= /* I18N: A configuration setting */
571dcac87eSGreg Roach            I18N::translate('Sender name') ?>
58dd6b2bfcSGreg Roach        </label>
59dd6b2bfcSGreg Roach        <div class="col-sm-9">
601dcac87eSGreg Roach            <input type="email" class="form-control" id="SMTP_FROM_NAME" name="SMTP_FROM_NAME" value="<?= e($SMTP_FROM_NAME) ?>" maxlength="255">
61dd6b2bfcSGreg Roach            <p class="small text-muted">
621dcac87eSGreg Roach                <?= /* I18N: Help text for the “Sender name” site configuration setting */
631dcac87eSGreg Roach                I18N::translate('This name is used in the “From” field, when sending automatic emails from this server.') ?>
64dd6b2bfcSGreg Roach            </p>
651dcac87eSGreg Roach
661dcac87eSGreg Roach            <?php if (!$smtp_from_name_valid) : ?>
671dcac87eSGreg Roach                <p class="alert alert-warning">
681dcac87eSGreg Roach                    <?= I18N::translate('Most mail servers require a valid email address.') ?>
691dcac87eSGreg Roach                </p>
701dcac87eSGreg Roach            <?php endif ?>
71dd6b2bfcSGreg Roach        </div>
72dd6b2bfcSGreg Roach    </div>
73dd6b2bfcSGreg Roach
74dd6b2bfcSGreg Roach    <h2><?= I18N::translate('SMTP mail server') ?></h2>
75dd6b2bfcSGreg Roach
76dd6b2bfcSGreg Roach    <div class="row form-group">
77dd6b2bfcSGreg Roach        <label for="SMTP_HOST" class="col-sm-3 col-form-label">
781dcac87eSGreg Roach            <?= /* I18N: A configuration setting */
791dcac87eSGreg Roach            I18N::translate('Server name') ?>
80dd6b2bfcSGreg Roach        </label>
81dd6b2bfcSGreg Roach        <div class="col-sm-9">
821dcac87eSGreg Roach            <input type="text" class="form-control" id="SMTP_HOST" name="SMTP_HOST" value="<?= e($SMTP_HOST) ?>" placeholder="smtp.example.com" maxlength="255" pattern="[a-z0-9-]+(\.[a-z0-9-]+)*">
83dd6b2bfcSGreg Roach            <p class="small text-muted">
841dcac87eSGreg Roach                <?= /* I18N: Help text for the “Server name” site configuration setting */
851dcac87eSGreg Roach                I18N::translate('This is the name of the SMTP server. “localhost” means that the mail service is running on the same computer as your web server.') ?>
86dd6b2bfcSGreg Roach            </p>
87dd6b2bfcSGreg Roach        </div>
88dd6b2bfcSGreg Roach    </div>
89dd6b2bfcSGreg Roach
90dd6b2bfcSGreg Roach    <div class="row form-group">
91dd6b2bfcSGreg Roach        <label for="SMTP_PORT" class="col-sm-3 col-form-label">
921dcac87eSGreg Roach            <?= /* I18N: A configuration setting */
931dcac87eSGreg Roach            I18N::translate('Port number') ?>
94dd6b2bfcSGreg Roach        </label>
95dd6b2bfcSGreg Roach        <div class="col-sm-9">
961dcac87eSGreg Roach            <input type="text" class="form-control" id="SMTP_PORT" name="SMTP_PORT" value="<?= e($SMTP_PORT) ?>" pattern="[0-9]*" placeholder="25" maxlength="5">
97dd6b2bfcSGreg Roach            <p class="small text-muted">
981dcac87eSGreg Roach                <?= /* I18N: Help text for the "Port number" site configuration setting */
991dcac87eSGreg Roach                I18N::translate('By default, SMTP works on port 25.') ?>
100dd6b2bfcSGreg Roach            </p>
101dd6b2bfcSGreg Roach        </div>
102dd6b2bfcSGreg Roach    </div>
103dd6b2bfcSGreg Roach
104dd6b2bfcSGreg Roach    <fieldset class="form-group">
105dd6b2bfcSGreg Roach        <div class="row">
106dd6b2bfcSGreg Roach            <legend class="col-form-label col-sm-3">
1071dcac87eSGreg Roach                <?= /* I18N: A configuration setting */
1081dcac87eSGreg Roach                I18N::translate('Use password') ?>
109dd6b2bfcSGreg Roach            </legend>
110dd6b2bfcSGreg Roach            <div class="col-sm-9">
1111dcac87eSGreg Roach                <?= view('components/radios-inline', ['name' => 'SMTP_AUTH', 'options' => [I18N::translate('no'), I18N::translate('yes')], 'selected' => (int) $SMTP_AUTH]) ?>
112dd6b2bfcSGreg Roach                <p class="small text-muted">
1131dcac87eSGreg Roach                    <?= /* I18N: Help text for the “Use password” site configuration setting */
1141dcac87eSGreg Roach                    I18N::translate('Most SMTP servers require a password.') ?>
115dd6b2bfcSGreg Roach                </p>
116dd6b2bfcSGreg Roach            </div>
117dd6b2bfcSGreg Roach        </div>
118dd6b2bfcSGreg Roach    </fieldset>
119dd6b2bfcSGreg Roach
120dd6b2bfcSGreg Roach    <div class="row form-group">
121dd6b2bfcSGreg Roach        <label for="SMTP_AUTH_USER" class="col-sm-3 col-form-label">
1221dcac87eSGreg Roach            <?= /* I18N: A configuration setting */
1231dcac87eSGreg Roach            I18N::translate('Username') ?>
124dd6b2bfcSGreg Roach        </label>
125dd6b2bfcSGreg Roach        <div class="col-sm-9">
1261dcac87eSGreg Roach            <input type="text" class="form-control" id="SMTP_AUTH_USER" name="SMTP_AUTH_USER" value="<?= e($SMTP_AUTH_USER) ?>" maxlength="255">
127dd6b2bfcSGreg Roach            <p class="small text-muted">
1281dcac87eSGreg Roach                <?= /* I18N: Help text for the "Username" site configuration setting */
1291dcac87eSGreg Roach                I18N::translate('The username required for authentication with the SMTP server.') ?>
130dd6b2bfcSGreg Roach            </p>
131dd6b2bfcSGreg Roach        </div>
132dd6b2bfcSGreg Roach    </div>
133dd6b2bfcSGreg Roach
134dd6b2bfcSGreg Roach    <div class="row form-group">
135dd6b2bfcSGreg Roach        <label for="SMTP_AUTH_PASS" class="col-sm-3 col-form-label">
1361dcac87eSGreg Roach            <?= /* I18N: A configuration setting */
1371dcac87eSGreg Roach            I18N::translate('Password') ?>
138dd6b2bfcSGreg Roach        </label>
139dd6b2bfcSGreg Roach        <div class="col-sm-9">
1409105309cSGreg Roach            <input type="password" class="form-control" id="SMTP_AUTH_PASS" name="SMTP_AUTH_PASS" value="" autocomplete="new-password">
141dd6b2bfcSGreg Roach            <p class="small text-muted">
1421dcac87eSGreg Roach                <?= /* I18N: Help text for the "Password" site configuration setting */
1431dcac87eSGreg Roach                I18N::translate('The password required for authentication with the SMTP server.') ?>
144dd6b2bfcSGreg Roach            </p>
145dd6b2bfcSGreg Roach        </div>
146dd6b2bfcSGreg Roach    </div>
147dd6b2bfcSGreg Roach
148dd6b2bfcSGreg Roach    <div class="row form-group">
149dd6b2bfcSGreg Roach        <label for="SMTP_SSL" class="col-sm-3 col-form-label">
1501dcac87eSGreg Roach            <?= /* I18N: A configuration setting */
1511dcac87eSGreg Roach            I18N::translate('Secure connection') ?>
152dd6b2bfcSGreg Roach        </label>
153dd6b2bfcSGreg Roach        <div class="col-sm-9">
1541dcac87eSGreg Roach            <?= view('components/select', ['name' => 'SMTP_SSL', 'selected' => $SMTP_SSL, 'options' => $mail_ssl_options]) ?>
155dd6b2bfcSGreg Roach            <p class="small text-muted">
1561dcac87eSGreg Roach                <?= /* I18N: Help text for the “Secure connection” site configuration setting */
1571dcac87eSGreg Roach                I18N::translate('Most servers do not use secure connections.') ?>
158dd6b2bfcSGreg Roach            </p>
159dd6b2bfcSGreg Roach        </div>
160dd6b2bfcSGreg Roach    </div>
161dd6b2bfcSGreg Roach
162dd6b2bfcSGreg Roach    <div class="row form-group">
163dd6b2bfcSGreg Roach        <label for="SMTP_HELO" class="col-sm-3 col-form-label">
1641dcac87eSGreg Roach            <?= /* I18N: A configuration setting */
1651dcac87eSGreg Roach            I18N::translate('Sending server name') ?>
166dd6b2bfcSGreg Roach        </label>
167dd6b2bfcSGreg Roach        <div class="col-sm-9">
1681dcac87eSGreg Roach            <input type="text" class="form-control" id="SMTP_HELO" name="SMTP_HELO" value="<?= e($SMTP_HELO) ?>" maxlength="255" pattern="[a-z0-9-]+(\.[a-z0-9-]+)*">
169dd6b2bfcSGreg Roach            <p class="small text-muted">
1701dcac87eSGreg Roach                <?= /* I18N: Help text for the "Sending server name" site configuration setting */
1711dcac87eSGreg Roach                I18N::translate('Most mail servers require that the sending server identifies itself correctly, using a valid domain name.') ?>
172dd6b2bfcSGreg Roach            </p>
1731dcac87eSGreg Roach
1741dcac87eSGreg Roach            <?php if (!$smtp_helo_valid) : ?>
1751dcac87eSGreg Roach                <p class="alert alert-warning">
1761dcac87eSGreg Roach                    <?= I18N::translate('Most mail servers require a valid domain name.') ?>
1771dcac87eSGreg Roach                </p>
1781dcac87eSGreg Roach            <?php endif ?>
179dd6b2bfcSGreg Roach        </div>
180dd6b2bfcSGreg Roach    </div>
181dd6b2bfcSGreg Roach
1824d99955eSGreg Roach    <h2>
1831dcac87eSGreg Roach        <?= /* I18N: https://en.wikipedia.org/wiki/DomainKeys_Identified_Mail */
1841dcac87eSGreg Roach        I18N::translate('DKIM digital signature') ?>
1854d99955eSGreg Roach    </h2>
1864d99955eSGreg Roach
1874d99955eSGreg Roach    <div class="row form-group">
1884d99955eSGreg Roach        <label for="DKIM_DOMAIN" class="col-sm-3 col-form-label">
1894d99955eSGreg Roach            <?= I18N::translate('Domain name') ?>
1904d99955eSGreg Roach        </label>
1914d99955eSGreg Roach        <div class="col-sm-9">
1921dcac87eSGreg Roach            <input type="text" class="form-control" id="DKIM_DOMAIN" name="DKIM_DOMAIN" value="<?= e($DKIM_DOMAIN) ?>" maxlength="255">
1934d99955eSGreg Roach        </div>
1944d99955eSGreg Roach    </div>
1954d99955eSGreg Roach
1964d99955eSGreg Roach    <div class="row form-group">
1974d99955eSGreg Roach        <label for="DKIM_SELECTOR" class="col-sm-3 col-form-label">
1984d99955eSGreg Roach            <?= I18N::translate('Selector') ?>
1994d99955eSGreg Roach        </label>
2004d99955eSGreg Roach        <div class="col-sm-9">
2011dcac87eSGreg Roach            <input type="text" class="form-control" id="DKIM_SELECTOR" name="DKIM_SELECTOR" value="<?= e($DKIM_SELECTOR) ?>" maxlength="255">
2024d99955eSGreg Roach        </div>
2034d99955eSGreg Roach    </div>
2044d99955eSGreg Roach
2054d99955eSGreg Roach    <div class="row form-group">
2064d99955eSGreg Roach        <label for="DKIM_KEY" class="col-sm-3 col-form-label">
2074d99955eSGreg Roach            <?= I18N::translate('Private key') ?>
2084d99955eSGreg Roach        </label>
2094d99955eSGreg Roach        <div class="col-sm-9">
2101dcac87eSGreg Roach            <textarea class="form-control" id="DKIM_KEY" name="DKIM_KEY"><?= e($DKIM_KEY) ?></textarea>
2114d99955eSGreg Roach        </div>
2124d99955eSGreg Roach    </div>
2134d99955eSGreg Roach
2141dcac87eSGreg Roach    <hr>
2151dcac87eSGreg Roach
216dd6b2bfcSGreg Roach    <div class="row form-group">
217dd6b2bfcSGreg Roach        <div class="offset-sm-3 col-sm-9">
218b4144a6dSGreg Roach            <p class="form-check">
219b4144a6dSGreg Roach                <input class="form-check-input" type="checkbox" id="test" name="test">
220b4144a6dSGreg Roach                <label class="form-check-label" for="test">
221b4144a6dSGreg Roach                    <?= I18N::translate('Send a test email using these settings') ?>
222b4144a6dSGreg Roach                </label>
223b4144a6dSGreg Roach            </p>
224b4144a6dSGreg Roach
225dd6b2bfcSGreg Roach            <button type="submit" class="btn btn-primary">
226dd6b2bfcSGreg Roach                <?= view('icons/save') ?>
227dd6b2bfcSGreg Roach                <?= I18N::translate('save') ?>
228dd6b2bfcSGreg Roach            </button>
229dd6b2bfcSGreg Roach
2300c0910bfSGreg Roach            <a href="<?= e(route(ControlPanel::class)) ?>" class="btn btn-secondary">
231dd6b2bfcSGreg Roach                <?= view('icons/cancel') ?>
232dd6b2bfcSGreg Roach                <?= I18N::translate('cancel') ?>
233dd6b2bfcSGreg Roach            </a>
234dd6b2bfcSGreg Roach        </div>
235dd6b2bfcSGreg Roach    </div>
236dd6b2bfcSGreg Roach</form>
237510d3f2fSGreg Roach
238510d3f2fSGreg Roach<?php View::push('javascript') ?>
239510d3f2fSGreg Roach<script>
2401dcac87eSGreg Roach    $("#SMTP_AUTH_PASS").hideShowPassword("infer", true);
241510d3f2fSGreg Roach</script>
242510d3f2fSGreg Roach<?php View::endpush() ?>
243