mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2026-01-03 22:22:33 -06:00
Add button for sending test email
This allows for easily testing whether the provided email configuration is correct. PR #20488.
This commit is contained in:
committed by
Chocobo1
parent
1702b6c891
commit
c06817f4eb
@@ -1107,6 +1107,11 @@ void AppController::defaultSavePathAction()
|
||||
setResult(BitTorrent::Session::instance()->savePath().toString());
|
||||
}
|
||||
|
||||
void AppController::sendTestEmailAction()
|
||||
{
|
||||
app()->sendTestEmail();
|
||||
}
|
||||
|
||||
void AppController::networkInterfaceListAction()
|
||||
{
|
||||
QJsonArray ifaceList;
|
||||
|
||||
@@ -48,6 +48,7 @@ private slots:
|
||||
void preferencesAction();
|
||||
void setPreferencesAction();
|
||||
void defaultSavePathAction();
|
||||
void sendTestEmailAction();
|
||||
|
||||
void networkInterfaceListAction();
|
||||
void networkInterfaceAddressListAction();
|
||||
|
||||
@@ -149,12 +149,12 @@ private:
|
||||
const QHash<std::pair<QString, QString>, QString> m_allowedMethod =
|
||||
{
|
||||
// <<controller name, action name>, HTTP method>
|
||||
{{u"app"_s, u"sendTestEmail"_s}, Http::METHOD_POST},
|
||||
{{u"app"_s, u"setPreferences"_s}, Http::METHOD_POST},
|
||||
{{u"app"_s, u"shutdown"_s}, Http::METHOD_POST},
|
||||
{{u"auth"_s, u"login"_s}, Http::METHOD_POST},
|
||||
{{u"auth"_s, u"logout"_s}, Http::METHOD_POST},
|
||||
{{u"rss"_s, u"addFeed"_s}, Http::METHOD_POST},
|
||||
{{u"rss"_s, u"setFeedURL"_s}, Http::METHOD_POST},
|
||||
{{u"rss"_s, u"addFolder"_s}, Http::METHOD_POST},
|
||||
{{u"rss"_s, u"markAsRead"_s}, Http::METHOD_POST},
|
||||
{{u"rss"_s, u"moveItem"_s}, Http::METHOD_POST},
|
||||
@@ -162,6 +162,7 @@ private:
|
||||
{{u"rss"_s, u"removeItem"_s}, Http::METHOD_POST},
|
||||
{{u"rss"_s, u"removeRule"_s}, Http::METHOD_POST},
|
||||
{{u"rss"_s, u"renameRule"_s}, Http::METHOD_POST},
|
||||
{{u"rss"_s, u"setFeedURL"_s}, Http::METHOD_POST},
|
||||
{{u"rss"_s, u"setRule"_s}, Http::METHOD_POST},
|
||||
{{u"search"_s, u"delete"_s}, Http::METHOD_POST},
|
||||
{{u"search"_s, u"enablePlugin"_s}, Http::METHOD_POST},
|
||||
|
||||
@@ -263,6 +263,9 @@
|
||||
</tr>
|
||||
</table>
|
||||
</fieldset>
|
||||
<div class="formRow">
|
||||
<input type="button" id="mail_test_button" value="QBT_TR(Send test email)QBT_TR[CONTEXT=OptionsDialog]" onclick="qBittorrent.Preferences.sendTestEmail();" />
|
||||
</div>
|
||||
</fieldset>
|
||||
|
||||
<fieldset class="settings">
|
||||
@@ -1553,6 +1556,7 @@ Use ';' to split multiple entries. Can use wildcard '*'.)QBT_TR[CONTEXT=OptionsD
|
||||
changeWatchFolderSelect: changeWatchFolderSelect,
|
||||
updateMailNotification: updateMailNotification,
|
||||
updateMailAuthSettings: updateMailAuthSettings,
|
||||
sendTestEmail: sendTestEmail,
|
||||
updateAutoRun: updateAutoRun,
|
||||
updateAutoRunOnTorrentAdded: updateAutoRunOnTorrentAdded,
|
||||
generateRandomPort: generateRandomPort,
|
||||
@@ -1705,6 +1709,7 @@ Use ';' to split multiple entries. Can use wildcard '*'.)QBT_TR[CONTEXT=OptionsD
|
||||
$('smtp_server_txt').setProperty('disabled', !isMailNotificationEnabled);
|
||||
$('mail_ssl_checkbox').setProperty('disabled', !isMailNotificationEnabled);
|
||||
$('mail_auth_checkbox').setProperty('disabled', !isMailNotificationEnabled);
|
||||
$('mail_test_button').setProperty('disabled', !isMailNotificationEnabled);
|
||||
|
||||
if (!isMailNotificationEnabled) {
|
||||
$('mail_auth_checkbox').setProperty('checked', !isMailNotificationEnabled);
|
||||
@@ -1718,6 +1723,19 @@ Use ';' to split multiple entries. Can use wildcard '*'.)QBT_TR[CONTEXT=OptionsD
|
||||
$('mail_password_text').setProperty('disabled', !isMailAuthEnabled);
|
||||
};
|
||||
|
||||
const sendTestEmail = function() {
|
||||
new Request({
|
||||
url: 'api/v2/app/sendTestEmail',
|
||||
method: 'post',
|
||||
onFailure: function() {
|
||||
alert("QBT_TR(Could not contact qBittorrent)QBT_TR[CONTEXT=HttpServer]");
|
||||
},
|
||||
onSuccess: function() {
|
||||
alert("QBT_TR(Attempted to send email. Check your inbox to confirm success)QBT_TR[CONTEXT=OptionsDialog]");
|
||||
}
|
||||
}).send();
|
||||
};
|
||||
|
||||
const updateAutoRunOnTorrentAdded = function() {
|
||||
const isAutoRunOnTorrentAddedEnabled = $('autorunOnTorrentAddedCheckbox').getProperty('checked');
|
||||
$('autorunOnTorrentAddedProgram').setProperty('disabled', !isAutoRunOnTorrentAddedEnabled);
|
||||
|
||||
Reference in New Issue
Block a user