diff options
Diffstat (limited to 'mailnews/base/ispdata/gmail.rdf')
-rw-r--r-- | mailnews/base/ispdata/gmail.rdf | 127 |
1 files changed, 127 insertions, 0 deletions
diff --git a/mailnews/base/ispdata/gmail.rdf b/mailnews/base/ispdata/gmail.rdf new file mode 100644 index 000000000..97a5d244d --- /dev/null +++ b/mailnews/base/ispdata/gmail.rdf @@ -0,0 +1,127 @@ +<?xml version="1.0"?> +<!-- This Source Code Form is subject to the terms of the Mozilla Public + - License, v. 2.0. If a copy of the MPL was not distributed with this + - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> + +<!DOCTYPE RDF> +<RDF:RDF + xmlns:NC="http://home.netscape.com/NC-rdf#" + xmlns:RDF="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> + + <RDF:Description about="NC:ispinfo"> + <NC:providers> + <!-- Gmail IMAP access --> + <NC:nsIMsgAccount about="domain:gmail.com?type=imap"> + <!-- IMAP server info --> + <NC:incomingServer> + <NC:nsIMsgIncomingServer> + <NC:prettyName>Gmail</NC:prettyName> + <NC:hostName>imap.gmail.com</NC:hostName> + <NC:type>imap</NC:type> + <NC:ServerType-imap> + <NC:nsIImapIncomingServer> + <NC:usingSubscription>false</NC:usingSubscription> + <!-- IMAP delete model: "remove it immediately". --> + <NC:deleteModel>2</NC:deleteModel> + <NC:trashFolderName>[Gmail]/Trash</NC:trashFolderName> + </NC:nsIImapIncomingServer> + </NC:ServerType-imap> + <NC:loginAtStartUp>true</NC:loginAtStartUp> + <NC:port>993</NC:port> + <NC:socketType>3</NC:socketType> + </NC:nsIMsgIncomingServer> + </NC:incomingServer> + + <!-- SMTP server info --> + <NC:smtp> + <NC:nsISmtpServer> + <NC:hostname>smtp.gmail.com</NC:hostname> + <NC:port>587</NC:port> + <NC:trySSL>2</NC:trySSL> + <NC:description>Gmail SMTP</NC:description> + </NC:nsISmtpServer> + </NC:smtp> + <NC:smtpRequiresUsername>true</NC:smtpRequiresUsername> + <NC:smtpCreateNewServer>true</NC:smtpCreateNewServer> + <NC:smtpUsePreferredServer>true</NC:smtpUsePreferredServer> + + <!-- identity defaults --> + <NC:identity> + <NC:nsIMsgIdentity> + <!-- Don't store sent mail in a Sent folder, as Gmail will show it + in [Gmail]/Sent Mail anyway. --> + <NC:doFcc>false</NC:doFcc> + <NC:FccFolder>[Gmail]/Sent Mail</NC:FccFolder> + <NC:DraftFolder>[Gmail]/Drafts</NC:DraftFolder> + </NC:nsIMsgIdentity> + </NC:identity> + + <!-- other options --> + <NC:wizardSkipPanels>true</NC:wizardSkipPanels> + <NC:wizardShortName>Gmail</NC:wizardShortName> + <NC:wizardLongName>Gmail IMAP</NC:wizardLongName> + <NC:wizardLongNameAccesskey>M</NC:wizardLongNameAccesskey> + <NC:wizardShow>true</NC:wizardShow> + <NC:wizardPromote>true</NC:wizardPromote> + <NC:emailProviderName>Gmail</NC:emailProviderName> + <NC:sampleEmail>example@gmail.com</NC:sampleEmail> + <NC:sampleUserName>example</NC:sampleUserName> + <NC:emailIDDescription>Gmail Username:</NC:emailIDDescription> + <NC:showServerDetailsOnWizardSummary>true</NC:showServerDetailsOnWizardSummary> + </NC:nsIMsgAccount> + + <NC:nsIMsgAccount about="domain:gmail.com?type=pop3"> + <!-- pop3 server info --> + <NC:incomingServer> + <NC:nsIMsgIncomingServer> + <NC:prettyName>Gmail</NC:prettyName> + <NC:hostName>pop.gmail.com</NC:hostName> + <NC:type>pop3</NC:type> + <NC:ServerType-pop3> + <NC:nsIPopIncomingServer> + <NC:leaveMessagesOnServer>true</NC:leaveMessagesOnServer> + <NC:deleteMailLeftOnServer>false</NC:deleteMailLeftOnServer> + </NC:nsIPopIncomingServer> + </NC:ServerType-pop3> + <NC:loginAtStartUp>true</NC:loginAtStartUp> + <NC:downloadOnBiff>true</NC:downloadOnBiff> + <NC:port>995</NC:port> + <NC:socketType>3</NC:socketType> + </NC:nsIMsgIncomingServer> + </NC:incomingServer> + + <!-- smtp server info --> + <NC:smtp> + <NC:nsISmtpServer> + <NC:hostname>smtp.gmail.com</NC:hostname> + <NC:port>587</NC:port> + <NC:trySSL>2</NC:trySSL> + <NC:description>Gmail</NC:description> + </NC:nsISmtpServer> + </NC:smtp> + <NC:smtpRequiresUsername>true</NC:smtpRequiresUsername> + <NC:smtpCreateNewServer>true</NC:smtpCreateNewServer> + <NC:smtpUsePreferredServer>true</NC:smtpUsePreferredServer> + + <!-- identity defaults --> + <NC:identity> + <NC:nsIMsgIdentity> + </NC:nsIMsgIdentity> + </NC:identity> + + <!-- other options --> + <NC:wizardSkipPanels>true</NC:wizardSkipPanels> + <NC:wizardShortName>Gmail</NC:wizardShortName> + <NC:wizardLongName>Gmail POP</NC:wizardLongName> + <NC:wizardLongNameAccesskey>G</NC:wizardLongNameAccesskey> + <NC:wizardShow>true</NC:wizardShow> + <NC:wizardPromote>true</NC:wizardPromote> + <NC:emailProviderName>Gmail</NC:emailProviderName> + <NC:sampleEmail>example@gmail.com</NC:sampleEmail> + <NC:sampleUserName>example</NC:sampleUserName> + <NC:emailIDDescription>Gmail Username:</NC:emailIDDescription> + <NC:showServerDetailsOnWizardSummary>true</NC:showServerDetailsOnWizardSummary> + </NC:nsIMsgAccount> + </NC:providers> + </RDF:Description> +</RDF:RDF> |