Files
cloudron-box/dashboard/src/views/email.html

530 lines
26 KiB
HTML
Raw Normal View History

2018-01-22 13:01:38 -08:00
<!-- Modal enable email -->
<div class="modal fade" id="enableEmailModal" tabindex="-1" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title">Cloudron Email Server</h4>
</div>
2018-01-23 12:30:35 +01:00
<div class="modal-body" ng-show="selectedDomain.provider === 'noop' || selectedDomain.provider === 'manual'">
2018-04-02 09:23:29 -07:00
No DNS provider is setup. The DNS records listed below have to be setup manually.<br/>
2018-01-22 13:01:38 -08:00
</div>
2018-01-23 12:30:35 +01:00
<div class="modal-body" ng-hide="selectedDomain.provider === 'noop' || selectedDomain.provider === 'manual'">
2018-04-02 09:23:29 -07:00
Cloudron will setup Email related DNS records automatically. Status of DNS Records below will show an error
2018-04-05 21:00:33 +02:00
while DNS is propagating (~5 minutes).
<br/><br/>
2018-04-02 09:23:29 -07:00
If this domain is already configured to handle email with some other provider, it will overwrite those records.
2018-01-22 13:01:38 -08:00
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
<button type="button" class="btn btn-success" ng-click="enableEmail()">I understand, enable</button>
2018-01-22 13:01:38 -08:00
</div>
</div>
</div>
</div>
2018-04-09 15:56:20 +02:00
<!-- Modal enable email -->
<div class="modal fade" id="mailboxAddModal" tabindex="-1" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title">Add Mailbox</h4>
</div>
<div class="modal-body">
<form name="mailboxadd_form" role="form" ng-submit="mailboxes.add.submit()" autocomplete="off">
<input type="password" style="display: none;">
<div class="form-group">
<label class="control-label">Name</label>
<div class="input-group form-inline" style="margin-top: 10px;">
<input type="text" class="form-control" ng-model="mailboxes.add.name" placeholder="Name" required/>
<div class="input-group-addon">@{{ selectedDomain.domain }}</div>
</div>
</div>
<div class="form-group">
<label class="control-label">Owner</label>
<select class="form-control" ng-model="mailboxes.add.owner" ng-options="u.display for u in users track by u.id"></select>
</div>
<input class="hide" type="submit" ng-disabled="mailboxadd_form.$invalid || mailboxes.add.busy"/>
</form>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
<button type="button" class="btn btn-success" ng-click="mailboxes.add.submit()" ng-disabled="mailboxadd_form.$invalid || mailboxes.add.busy"><i class="fa fa-circle-o-notch fa-spin" ng-show="mailboxes.add.busy"></i> Save</button>
</div>
</div>
</div>
</div>
2018-04-09 12:42:14 +02:00
<!-- Modal edit mailbox -->
<div class="modal fade" id="mailboxEditModal" tabindex="-1" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title">Edit mailbox {{ mailboxes.edit.mailbox.name }}@{{selectedDomain.domain}}</h4>
2018-04-09 12:42:14 +02:00
</div>
<div class="modal-body">
<form name="mailboxedit_form" role="form" ng-submit="mailboxes.edit.submit()" autocomplete="off">
<input type="password" style="display: none;">
<div class="form-group">
<label class="control-label">Mailbox Owner</label>
<select class="form-control" ng-model="mailboxes.edit.mailbox.owner" ng-options="u.display for u in users track by u.id"></select>
</div>
<div class="form-group" ng-class="{ 'has-error': mailboxes.edit.error }">
<label class="control-label">Aliases</label>
<div class="control-label" ng-show="mailboxes.edit.error">
<small>{{ mailboxes.edit.error.message }}</small>
</div>
<div class="input-group form-inline" style="margin-top: 10px;">
<tag-input class="form-group form-control" placeholder="Add alias" taglist="mailboxes.edit.mailbox.aliases" name="aliases"></tag-input>
<div class="input-group-addon">@{{ selectedDomain.domain }}</div>
2018-04-09 12:42:14 +02:00
</div>
</div>
<input class="hide" type="submit" ng-disabled="mailboxedit_form.$invalid || mailboxes.edit.busy"/>
</form>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
<button type="button" class="btn btn-success" ng-click="mailboxes.edit.submit()" ng-disabled="mailboxedit_form.$invalid || mailboxes.edit.busy"><i class="fa fa-circle-o-notch fa-spin" ng-show="mailboxes.edit.busy"></i> Save</button>
</div>
</div>
</div>
</div>
2018-04-05 21:22:07 +02:00
<!-- Modal remove mailbox -->
<div class="modal fade" id="mailboxRemoveModal" tabindex="-1" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
</div>
<div class="modal-body">
<p>Really delete mailbox <b>{{ mailboxes.remove.name }}@{{selectedDomain.domain}}</b>?</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-danger" ng-click="mailboxes.remove.submit()" ng-disabled="mailboxes.remove.busy"><i class="fa fa-circle-o-notch fa-spin" ng-show="mailboxes.remove.busy"></i> Delete</button>
</div>
</div>
</div>
</div>
<!-- Modal edit mailinglist -->
<div class="modal fade" id="mailinglistEditModal" tabindex="-1" role="dialog">
2018-04-09 15:08:05 +02:00
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title">Edit mailinglist {{ mailinglists.edit.list.name }}@{{selectedDomain.domain}}</h4>
</div>
<div class="modal-body">
<form name="mailinglistedit_form" role="form" ng-submit="mailinglists.edit.submit()" autocomplete="off">
<input type="password" style="display: none;">
<div class="form-group" ng-class="{ 'has-error': mailinglists.edit.error }">
<label class="control-label">Associated Mailboxes</label><br/>
<div class="control-label" ng-show="mailinglists.edit.error">
<small>{{ mailinglists.edit.error.message }}</small>
</div>
2018-04-09 15:08:05 +02:00
<multiselect ng-model="mailinglists.edit.list.members" options="name for name in mailinglists.availableMailboxNames" data-multiple="true"></multiselect>
</div>
<input class="hide" type="submit" ng-disabled="mailinglistedit_form.$invalid || mailinglists.edit.busy"/>
</form>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
<button type="button" class="btn btn-success" ng-click="mailinglists.edit.submit()" ng-disabled="mailinglistedit_form.$invalid || mailinglists.edit.busy"><i class="fa fa-circle-o-notch fa-spin" ng-show="mailinglists.edit.busy"></i> Save</button>
</div>
</div>
</div>
2018-04-09 15:08:05 +02:00
</div>
2018-04-06 16:43:43 +02:00
<!-- Modal remove mailinglist -->
<div class="modal fade" id="mailinglistRemoveModal" tabindex="-1" role="dialog">
2018-04-09 15:08:05 +02:00
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
</div>
<div class="modal-body">
<p>Really delete mailinglist <b>{{ mailinglists.remove.list.name }}@{{selectedDomain.domain}}</b>?</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-danger" ng-click="mailinglists.remove.submit()" ng-disabled="mailinglists.remove.busy"><i class="fa fa-circle-o-notch fa-spin" ng-show="mailinglist.remove.busy"></i> Delete</button>
2018-04-06 16:43:43 +02:00
</div>
</div>
</div>
2018-04-09 15:08:05 +02:00
</div>
2018-04-06 16:43:43 +02:00
2018-01-22 13:01:38 -08:00
<!-- Test email sent -->
<div class="modal fade" id="testEmailModal" tabindex="-1" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title">Send test email</h4>
</div>
<div class="modal-body">
2018-04-09 15:08:05 +02:00
<form name="testEmailForm" role="form" novalidate ng-submit="testEmail.submit()" autocomplete="off">
<fieldset>
<p class="has-error text-center" ng-show="testEmail.error">{{ testEmail.error.generic }}</p>
<p>This will send a test email from no-reply@{{selectedDomain.domain}} to the address below.</p>
<br/>
<div class="form-group" ng-class="{ 'has-error': testEmail.error.key }">
<label class="control-label" for="inputTestEmailKey">Email to</label>
<input type="text" class="form-control" ng-model="testEmail.mailTo" id="inputTestMailTo" name="mailTo" ng-disabled="testEmail.busy" placeholder="Email address" autofocus>
</div>
<input class="ng-hide" type="submit" ng-disabled="testEmailForm.$invalid"/>
</fieldset>
</form>
2018-01-22 13:01:38 -08:00
</div>
<div class="modal-footer ">
<button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
<button type="submit" class="btn btn-outline btn-success pull-right" ng-click="testEmail.submit()" ng-disabled="testEmail.$invalid || testEmail.busy">
2018-04-09 15:08:05 +02:00
<i class="fa fa-circle-o-notch fa-spin" ng-show="testEmail.busy"></i><span>Send</span>
2018-01-22 13:01:38 -08:00
</button>
2018-04-09 15:08:05 +02:00
</div>
2018-01-22 13:01:38 -08:00
</div>
</div>
</div>
2018-01-23 12:30:35 +01:00
<div ng-show="!ready" class="loading-banner">
2018-04-09 15:08:05 +02:00
<h1><i class="fa fa-circle-o-notch fa-spin"></i></h1>
2018-01-23 12:30:35 +01:00
</div>
2018-04-05 21:24:29 +02:00
<div class="content content-large" ng-show="ready">
2018-01-22 13:01:38 -08:00
<div class="text-left">
2018-01-23 12:30:35 +01:00
<h1>
Email
2018-01-29 19:33:56 -08:00
<select class="form-control pull-right" style="display: inline-block; width: 200px;" ng-model="selectedDomain" ng-options="a.domain for a in domains" ng-change="refreshDomain()"></select>
2018-01-23 12:30:35 +01:00
</h1>
2018-01-22 13:01:38 -08:00
</div>
<div class="text-left">
<h3>IMAP and SMTP Server</h3>
</div>
2018-04-05 21:24:29 +02:00
<div class="card card-large" style="margin-bottom: 15px;">
2018-01-22 13:01:38 -08:00
<div class="row">
<div class="col-md-12">
2018-04-02 09:24:24 -07:00
Cloudron has a built-in <a ng-href="{{ config.webServerOrigin + '/documentation/email/' }}" target="_blank">email server</a> that allows users to send and receive email for this domain.
2018-01-22 13:01:38 -08:00
Apps can send emails regardless of this setting.
</div>
</div>
2018-01-23 12:30:35 +01:00
<div class="row" ng-show="selectedDomain.mailConfig.enabled">
2018-01-22 13:01:38 -08:00
<br/>
<div class="col-md-12">
2018-04-09 15:08:05 +02:00
<b><a href="" data-toggle="collapse" data-parent="#accordion" data-target="#mail_settings">Mail server settings for email clients</a></b>
<div id="mail_settings" class="panel-collapse collapse">
<br/>
<p><b>Incoming Mail (IMAP)</b><br/>Server: <span ng-click-select>{{config.mailFqdn}}</span><br/>Port: 993 (TLS)</p>
<p><b>Outgoing Mail (SMTP)</b><br/>Server: <span ng-click-select>{{config.mailFqdn}}</span><br/>Port: 587 (STARTTLS)</p>
<p><b>ManageSieve</b><br/>Server: <span ng-click-select>{{config.mailFqdn}}</span><br/>Port: 4190 (TLS)</p>
<p>Use <i>username</i>@{{ selectedDomain.domain }} and the Cloudron password to access mailboxes of this domain</p>
2018-01-22 13:01:38 -08:00
</div>
</div>
</div>
<br/>
<div class="row">
2018-01-23 12:30:35 +01:00
<div class="col-md-12" ng-show="selectedDomain.provider !== 'caas'">
<button ng-class="selectedDomain.mailConfig.enabled ? 'btn btn-danger' : 'btn btn-primary'" ng-click="toggleEmailEnabled()" ng-enabled="selectedDomain.mailConfig">{{ selectedDomain.mailConfig.enabled ? "Disable Email" : "Enable Email" }}</button>
2018-01-22 13:01:38 -08:00
</div>
2018-01-23 12:30:35 +01:00
<div class="col-md-12" ng-show="selectedDomain.provider === 'caas'">
2018-01-22 13:01:38 -08:00
<span class="text-danger text-bold">This feature requires the Cloudron to be on <a ng-href="{{ config.webServerOrigin + '/documentation/managed-hosting/#using-a-custom-domain' }}" target="_blank">custom domain</a>.</span>
</div>
</div>
</div>
2018-04-09 15:08:05 +02:00
<br/>
<div class="text-left" ng-show="selectedDomain.mailConfig.enabled">
<h3>Mailboxes</h3>
</div>
2018-04-05 21:24:29 +02:00
<div class="card card-large" style="margin-bottom: 15px;" ng-show="selectedDomain.mailConfig.enabled">
<div class="row">
<div class="col-md-12">
2018-04-05 21:00:33 +02:00
Each mailboxes has an owner, who is able to access the mailbox.
<br/><br/>
<table class="table table-hover">
<thead>
<tr>
2018-04-05 21:00:33 +02:00
<th>Name</th>
<th>Owner</th>
<th>Aliases</th>
<th class="text-right">Action</th>
</tr>
</thead>
<tbody>
2018-04-05 21:00:33 +02:00
<tr ng-repeat="mailbox in mailboxes.mailboxes">
<td class="hand" ng-click="mailboxes.edit.show(mailbox)">
2018-04-05 21:00:33 +02:00
{{ mailbox.name }}
</td>
<td class="hand" ng-click="mailboxes.edit.show(mailbox)">
2018-04-09 12:45:00 +02:00
{{ mailbox.owner.display }}
2018-04-05 21:00:33 +02:00
</td>
<td class="hand" ng-click="mailboxes.edit.show(mailbox)">
2018-04-09 12:45:00 +02:00
{{ mailbox.aliases }}
2018-04-05 21:00:33 +02:00
</td>
<td class="text-right no-wrap">
2018-04-09 12:45:00 +02:00
<button class="btn btn-xs btn-default" ng-click="mailboxes.edit.show(mailbox)"><i class="fa fa-pencil"></i></button>
<button class="btn btn-xs btn-danger" ng-click="mailboxes.remove.show(mailbox)"><i class="fa fa-trash"></i></button>
2018-04-05 21:00:33 +02:00
</td>
</tr>
</tbody>
</table>
2018-04-09 15:56:20 +02:00
<button class="btn btn-primary btn-outline pull-right" ng-click="mailboxes.add.show()">
<i class="fa fa-inbox"></i> New Mailbox
</button>
</div>
</div>
</div>
2018-04-09 15:08:05 +02:00
<br/>
2018-04-01 21:58:12 +02:00
<div class="text-left" ng-show="selectedDomain.mailConfig.enabled">
<h3>Mailinglists</h3>
</div>
2018-04-05 21:24:29 +02:00
<div class="card card-large" style="margin-bottom: 15px;" ng-show="selectedDomain.mailConfig.enabled">
2018-04-01 21:58:12 +02:00
<div class="row">
<div class="col-md-12">
2018-04-06 16:43:43 +02:00
Mailinglists will forward all emails to the assigned mailboxes.
2018-04-01 21:58:12 +02:00
</div>
</div>
<br/>
2018-04-06 16:43:43 +02:00
<table class="table table-hover">
<thead>
<tr>
<th>Name</th>
<th>Mailboxes</th>
<th class="text-right">Action</th>
2018-04-06 16:43:43 +02:00
</tr>
</thead>
<tbody>
<tr ng-repeat="list in mailinglists.mailinglists">
<td class="hand" ng-click="mailinglists.edit.show(list)">
2018-04-06 16:43:43 +02:00
{{ list.name }}
</td>
<td class="hand" ng-click="mailinglists.edit.show(list)">
{{ list.members.join(', ') }}
2018-04-06 16:43:43 +02:00
</td>
<td class="text-right no-wrap">
<button class="btn btn-xs btn-default" ng-click="mailinglists.edit.show(list)"><i class="fa fa-pencil"></i></button>
<button class="btn btn-xs btn-danger" ng-click="mailinglists.remove.show(list)"><i class="fa fa-trash"></i></button>
2018-04-06 16:43:43 +02:00
</td>
</tr>
<tr>
<td>
2018-04-06 16:48:04 +02:00
<input type="text" class="form-control" ng-model="mailinglists.add.name" placeholder="New Mailinglist">
2018-04-06 16:43:43 +02:00
<p ng-show="mailinglists.add.error" class="text-danger"><b>{{ mailinglists.add.error }}</b></p>
</td>
<td>
<multiselect ng-model="mailinglists.add.members" options="name for name in mailinglists.availableMailboxNames" data-multiple="true"></multiselect>
</td>
<td class="text-right no-wrap">
<button class="btn btn-primary" ng-disabled="!mailinglists.add.name || !mailinglists.add.members.length || mailinglists.add.busy" ng-click="mailinglists.add.submit()"><i class="fa fa-circle-o-notch fa-spin" ng-show="mailinglists.add.busy"></i> Add</button>
</td>
</tr>
</tbody>
</table>
2018-04-01 21:58:12 +02:00
</div>
2018-04-09 15:08:05 +02:00
<br/>
<div class="text-left" ng-show="selectedDomain.mailConfig.enabled">
<h3>Catch-all</h3>
</div>
2018-04-05 21:24:29 +02:00
<div class="card card-large" style="margin-bottom: 15px;" ng-show="selectedDomain.mailConfig.enabled">
<div class="row">
<div class="col-md-12">
Emails sent to non existing addresses will be forwarded to the following accounts:
</div>
</div>
<br/>
<div class="row">
<div class="col-md-6">
<multiselect ng-model="catchall.addresses" options="address for address in catchall.availableAddresses" data-multiple="true"></multiselect>
<button class="btn btn-outline btn-primary" ng-disabled="catchall.busy" ng-click="catchall.submit()"><i class="fa fa-circle-o-notch fa-spin" ng-show="catchall.busy"></i> Save</button>
</div>
</div>
</div>
2018-04-09 15:08:05 +02:00
<br/>
2018-01-23 12:30:35 +01:00
<div class="text-left">
2018-01-22 13:01:38 -08:00
<h3>Outbound Mail Relay</h3>
</div>
2018-04-05 21:24:29 +02:00
<div class="card card-large" style="margin-bottom: 15px;">
2018-04-09 15:08:05 +02:00
<div class="row">
<div class="col-md-12">
Select the mail server through which Cloudron will send outbound mails:
2018-01-22 13:01:38 -08:00
</div>
2018-04-09 15:08:05 +02:00
</div>
2018-01-22 13:01:38 -08:00
2018-04-09 15:08:05 +02:00
<br/>
<div class="row">
<div class="col-md-12">
<div class="form-group">
<select class="form-control" style="width: 50%;" ng-model="mailRelay.preset" ng-options="a.name for a in mailRelayPresets track by a.provider" ng-change="mailRelay.presetChanged()"></select>
2018-01-22 13:01:38 -08:00
</div>
</div>
2018-04-09 15:08:05 +02:00
</div>
<div class="row" ng-show="mailRelay.preset.provider !== 'cloudron-smtp'">
<div class="col-md-6">
<div>
<form name="mailRelayForm" role="form" ng-submit="mailRelay.submit()" autocomplete="off" novalidate>
<div class="form-group" ng-class="{ 'has-error': (mailRelayForm.host.$dirty && mailRelayForm.host.$invalid) }">
<label class="control-label">SMTP Host</label>
<div class="control-label" ng-show="(!mailRelayForm.host.$dirty && mailRelay.error.host) || (mailRelayForm.host.$dirty && mailRelayForm.host.$invalid)">
<small ng-show="!mailRelayForm.host.$dirty && mailRelay.error.host">{{ mailRelay.error.host }}</small>
2018-01-22 13:01:38 -08:00
</div>
2018-04-09 15:08:05 +02:00
<input type="text" class="form-control" ng-model="mailRelay.relay.host" name="host" required>
</div>
<div class="form-group" ng-class="{ 'has-error': (mailRelayForm.port.$dirty && mailRelayForm.port.$invalid) }">
<label class="control-label">SMTP Port (STARTTLS)</label>
<div class="control-label" ng-show="(!mailRelayForm.port.$dirty && mailRelay.error.port) || (mailRelayForm.port.$dirty && mailRelayForm.port.$invalid)">
<small ng-show="!mailRelayForm.port.$dirty && mailRelay.error.port">{{ mailRelay.error.port }}</small>
2018-01-22 13:01:38 -08:00
</div>
2018-04-09 15:08:05 +02:00
<input type="number" class="form-control" ng-model="mailRelay.relay.port" name="port" required>
</div>
2018-01-22 13:01:38 -08:00
2018-04-09 15:08:05 +02:00
<!-- Postmark and Sendgrid -->
<div ng-show="isProvider('postmark-smtp') || isProvider('sendgrid-smtp')" class="form-group" ng-class="{ 'has-error': (mailRelayForm.serverApiToken.$dirty && mailRelayForm.serverApiToken.$invalid) }">
<label class="control-label">API Token/Key</label>
<div class="control-label" ng-show="(!mailRelayForm.serverApiToken.$dirty && mailRelay.error.serverApiToken) || (mailRelayForm.serverApiToken.$dirty && mailRelayForm.serverApiToken.$invalid)">
<small ng-show="!mailRelayForm.serverApiToken.$dirty && mailRelay.error.serverApiToken">{{ mailRelay.error.serverApiToken }}</small>
2018-01-22 13:01:38 -08:00
</div>
2018-04-09 15:08:05 +02:00
<input type="text" class="form-control" ng-model="mailRelay.relay.serverApiToken" name="serverApiToken" ng-required="isProvider('postmark-smtp') || isProvider('sendgrid-smtp')">
</div>
2018-01-22 13:01:38 -08:00
2018-04-09 15:08:05 +02:00
<!-- Other -->
<div ng-show="!isProvider('postmark-smtp') && !isProvider('sendgrid-smtp')" class="form-group" ng-class="{ 'has-error': (mailRelayForm.username.$dirty && mailRelayForm.username.$invalid) }">
<label class="control-label">Username</label>
<div class="control-label" ng-show="(!mailRelayForm.username.$dirty && mailRelay.error.username) || (mailRelayForm.username.$dirty && mailRelayForm.username.$invalid)">
<small ng-show="!mailRelayForm.username.$dirty && mailRelay.error.username">{{ mailRelay.error.username }}</small>
2018-01-22 13:01:38 -08:00
</div>
2018-04-09 15:08:05 +02:00
<input type="text" class="form-control" ng-model="mailRelay.relay.username" name="username" ng-required="!isProvider('postmark-smtp') && !isProvider('sendgrid-smtp')">
</div>
2018-01-22 13:01:38 -08:00
2018-04-09 15:08:05 +02:00
<div ng-show="!isProvider('postmark-smtp') && !isProvider('sendgrid-smtp')" class="form-group" ng-class="{ 'has-error': (mailRelayForm.password.$dirty && mailRelayForm.password.$invalid) }">
<label class="control-label">Password</label>
<div class="control-label" ng-show="(!mailRelayForm.password.$dirty && mailRelay.error.password) || (mailRelayForm.password.$dirty && mailRelayForm.password.$invalid)">
<small ng-show="!mailRelayForm.password.$dirty && mailRelay.error.password">{{ mailRelay.error.password }}</small>
2018-01-22 13:01:38 -08:00
</div>
2018-04-09 15:08:05 +02:00
<input type="password" class="form-control" ng-model="mailRelay.relay.password" name="password" ng-required="!isProvider('postmark-smtp') && !isProvider('sendgrid-smtp')">
</div>
2018-01-22 13:01:38 -08:00
2018-04-09 15:08:05 +02:00
<input class="ng-hide" type="submit" ng-disabled="mailRelayForm.$invalid"/>
</form>
2018-01-22 13:01:38 -08:00
</div>
</div>
2018-04-09 15:08:05 +02:00
</div>
2018-01-22 13:01:38 -08:00
<div class="row">
<div class="col-md-12">
<button class="btn btn-primary" ng-click="mailRelay.submit()" ng-disabled="(mailRelay.preset.provider !== 'cloudron-smtp' && (!mailRelayForm.$dirty || mailRelayForm.$invalid)) || mailRelay.busy"><i class="fa fa-circle-o-notch fa-spin" ng-show="mailRelay.busy"></i> Save</button>
<span class="has-error text-center" ng-show="mailRelay.error">{{ mailRelay.error }}</span>
<span class="text-success text-center text-bold" ng-show="mailRelay.success">Saved</span>
</div>
</div>
</div>
2018-04-09 15:08:05 +02:00
<br/>
2018-01-23 12:30:35 +01:00
<div class="text-left" ng-show="selectedDomain.provider !== 'caas' && selectedDomain.mailConfig.relay.provider === 'cloudron-smtp'">
2018-01-22 13:01:38 -08:00
<h3>DNS Records</h3>
</div>
2018-04-05 21:24:29 +02:00
<div class="card card-large" style="margin-bottom: 15px;" ng-show="selectedDomain.provider !== 'caas' && selectedDomain.mailConfig.relay.provider === 'cloudron-smtp'">
2018-01-22 13:01:38 -08:00
<div class="row">
<div class="col-md-12">
Set the following DNS records to guarantee email delivery:
<br/><br/>
<div ng-repeat="record in expectedDnsRecordsTypes">
2018-02-23 17:04:38 -08:00
<div class="row" ng-if="expectedDnsRecords[record.value] && (selectedDomain.mailConfig.enabled || (record.name !== 'DMARC' && record.name !== 'MX'))">
2018-01-22 13:01:38 -08:00
<div class="col-xs-12">
<p class="text-muted">
2018-01-23 12:30:35 +01:00
<i ng-hide="refreshBusy" ng-class="expectedDnsRecords[record.value].status ? 'fa fa-check-circle text-success' : 'fa fa-exclamation-triangle text-danger'"></i> &nbsp;
2018-01-22 13:01:38 -08:00
<a href="" data-toggle="collapse" data-parent="#accordion" data-target="#collapse_dns_{{ record.value }}">{{ record.name }} record</a>
2018-01-23 12:38:19 +01:00
<button class="btn btn-xs btn-default" ng-click="refreshStatus()" ng-disabled="refreshBusy" ng-show="!expectedDnsRecords[record.value].status"><i class="fa fa-refresh" ng-class="{ 'fa-pulse': refreshBusy }"></i></button>
2018-01-22 13:01:38 -08:00
</p>
<div id="collapse_dns_{{ record.value }}" class="panel-collapse collapse">
<div class="panel-body">
<p>Domain: <b ng-click-select><tt>{{ expectedDnsRecords[record.value].domain }}</tt></b></p>
<p>Record type: <b ng-click-select><tt>{{ expectedDnsRecords[record.value].type }}</tt></b></p>
<p style="overflow: auto; white-space: nowrap;">Expected value: <b ng-click-select><tt>{{ expectedDnsRecords[record.value].expected }}</tt></b></p>
<p style="overflow: auto; white-space: nowrap;">Current value: <b ng-click-select><tt>{{ expectedDnsRecords[record.value].value ? expectedDnsRecords[record.value].value : '[not set]' }}</tt></b></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
2018-04-09 15:08:05 +02:00
<br/>
2018-01-23 12:30:35 +01:00
<div class="text-left" ng-show="selectedDomain.provider !== 'caas'">
2018-04-09 15:08:05 +02:00
<h3>SMTP Status</h3>
2018-01-22 13:01:38 -08:00
</div>
2018-04-05 21:24:29 +02:00
<div class="card card-large" style="margin-bottom: 15px;" ng-show="selectedDomain.provider !== 'caas'">
2018-01-22 13:01:38 -08:00
<div class="row">
<div class="col-md-12">
<div class="row">
<div class="col-xs-12">
<p class="text-muted">
2018-01-23 12:30:35 +01:00
<i ng-hide="refreshBusy" ng-class="selectedDomain.mailStatus.relay.status ? 'fa fa-check-circle text-success' : 'fa fa-exclamation-triangle text-danger'"></i> &nbsp;
2018-01-22 13:01:38 -08:00
<a href="" data-toggle="collapse" data-parent="#accordion" data-target="#collapse_outbound_smtp">
{{ selectedDomain.mailConfig.relay.provider === 'cloudron-smtp' ? 'Outbound SMTP (Direct)' : 'Outbound SMTP (Relay)' }}
2018-01-22 13:01:38 -08:00
</a>
2018-01-23 12:38:19 +01:00
<button class="btn btn-xs btn-default" ng-click="refreshStatus()" ng-disabled="refreshBusy" ng-show="!selectedDomain.mailStatus.relay.status"><i class="fa fa-refresh" ng-class="{ 'fa-pulse': refreshBusy }"></i></button>
2018-01-22 13:01:38 -08:00
</p>
<div id="collapse_outbound_smtp" class="panel-collapse collapse">
<div class="panel-body">
2018-01-23 12:30:35 +01:00
<p><b> {{ selectedDomain.mailStatus.relay.value }} </b> </p>
2018-01-22 13:01:38 -08:00
</div>
</div>
</div>
</div>
2018-01-23 12:30:35 +01:00
<div class="row" ng-show="selectedDomain.mailConfig.relay.provider === 'cloudron-smtp'">
2018-01-22 13:01:38 -08:00
<div class="col-xs-12">
<p class="text-muted">
2018-01-23 12:38:19 +01:00
<i ng-hide="refreshBusy" ng-class="selectedDomain.mailStatus.rbl.status ? 'fa fa-check-circle text-success' : 'fa fa-exclamation-triangle text-danger'"></i> &nbsp;
2018-01-22 13:01:38 -08:00
<a href="" data-toggle="collapse" data-parent="#accordion" data-target="#collapse_rbl">
2018-04-09 15:08:05 +02:00
IP Address Blacklist Check
2018-01-22 13:01:38 -08:00
</a>
2018-01-23 12:38:19 +01:00
<button class="btn btn-xs btn-default" ng-click="refreshStatus()" ng-disabled="refreshBusy" ng-show="!selectedDomain.mailStatus.rbl.status"><i class="fa fa-refresh" ng-class="{ 'fa-pulse': refreshBusy }"></i></button>
2018-01-22 13:01:38 -08:00
</p>
<div id="collapse_rbl" class="panel-collapse collapse">
<div class="panel-body">
2018-04-09 15:08:05 +02:00
<div>This server's IP {{ selectedDomain.mailStatus.rbl.ip }} is <b ng-hide="selectedDomain.mailStatus.rbl.servers.length">not</b> blacklisted.</div>
<div ng-repeat="server in selectedDomain.mailStatus.rbl.servers">
<a ng-href="{{server.site}}" target="_blank">{{ server.name }}</a>
</div>
2018-01-22 13:01:38 -08:00
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-12">
<button class="btn btn-primary pull-left" ng-click="testEmail.show()">Send Test Email</button>
</div>
</div>
</div>
</div>
</div>
</div>