Switch to correct URLs on support.getmailspring.com

This commit is contained in:
Ben Gotow 2017-10-03 13:03:39 -07:00
parent 2f602d07a1
commit 721818c82c
5 changed files with 13 additions and 8 deletions

View file

@ -1,7 +1,7 @@
<!-- <!--
Thanks for taking the time to file an issue! If you have general question or a problem with your email account, take a quick look at the Mailspring Knowledge Base to see if you question is addressed there: Thanks for taking the time to file an issue! If you have general question or a problem with your email account, take a quick look at the Mailspring Knowledge Base to see if you question is addressed there:
https://support.getmailspring.com/hc/en-us/sections/203638587-N1_ http://support.getmailspring.com/hc/en-us/
Our team tries to respond to all GitHub issues. To make sure your issue is Our team tries to respond to all GitHub issues. To make sure your issue is
actionable, try to include the following information: actionable, try to include the following information:

View file

@ -212,10 +212,12 @@ const CreatePageForForm = FormComponent => {
let articleURL; let articleURL;
if (account.emailAddress.includes('@yahoo.com')) { if (account.emailAddress.includes('@yahoo.com')) {
message = 'Have you enabled access through Yahoo?'; message = 'Have you enabled access through Yahoo?';
articleURL = 'https://support.getmailspring.com/hc/en-us/articles/115001076128'; articleURL =
'http://support.getmailspring.com//hc/en-us/articles/115001882372-Authorizing-Use-with-Yahoo';
} else { } else {
message = 'Some providers require an app password.'; message = 'Some providers require an app password.';
articleURL = 'https://support.getmailspring.com/hc/en-us/articles/115001056608'; articleURL =
'http://support.getmailspring.com/hc/en-us/articles/115001876051-App-Passwords';
} }
// We don't use a FormErrorMessage component because the content // We don't use a FormErrorMessage component because the content
// we need to display has HTML. // we need to display has HTML.

View file

@ -365,8 +365,7 @@ export default class Application extends EventEmitter {
}); });
this.on('application:view-help', () => { this.on('application:view-help', () => {
const helpUrl = const helpUrl = 'http://support.getmailspring.com/hc/en-us';
'https://support.getmailspring.com/hc/en-us/categories/200419318-Help-for-N1-users';
require('electron').shell.openExternal(helpUrl); require('electron').shell.openExternal(helpUrl);
}); });

View file

@ -43,7 +43,9 @@ class Windows {
detail: "You'll find Mailspring, along with other options, listed in Default Apps > Mail.", detail: "You'll find Mailspring, along with other options, listed in Default Apps > Mail.",
}, },
() => { () => {
shell.openExternal('https://support.getmailspring.com/hc/en-us/articles/229277648'); shell.openExternal(
'http://support.getmailspring.com/hc/en-us/articles/115001881412-Choose-Mailspring-as-the-default-mail-client-on-Windows'
);
} }
); );
} }
@ -76,7 +78,9 @@ class Windows {
detail: "Click 'Learn More' to view instructions in our knowledge base.", detail: "Click 'Learn More' to view instructions in our knowledge base.",
}, },
() => { () => {
shell.openExternal('https://support.getmailspring.com/hc/en-us/articles/229277648'); shell.openExternal(
'http://support.getmailspring.com/hc/en-us/articles/115001881412-Choose-Mailspring-as-the-default-mail-client-on-Windows'
);
} }
); );
} }

View file

@ -94,7 +94,7 @@ class KeyManager {
_try(fn) { _try(fn) {
const ERR_MSG = const ERR_MSG =
"We couldn't store your password securely! For more information, visit https://support.getmailspring.com/hc/en-us/articles/223790028"; "We couldn't store your password securely! For more information, visit http://support.getmailspring.com/hc/en-us/articles/115001875571";
try { try {
if (!fn()) { if (!fn()) {
remote.dialog.showErrorBox('Password Management Error', ERR_MSG); remote.dialog.showErrorBox('Password Management Error', ERR_MSG);