OpenSRS Service Account Provisioning Protocol

Size: px
Start display at page:

Download "OpenSRS Email Service Account Provisioning Protocol"

Transcription

1 OpenSRS Service Account Provisioning Protocol September 29, 2011

2 COPYRIGHT Copyright 2011 Tucows, Inc. All rights reserved.

3 Contents CHAPTER 1 Overview of the APP APP architecture APP client layer APP server layer Getting started CHAPTER 2 Using the APP Overview Establishing a secure connection Specifying the version number Logging in Submitting commands Command syntax Rules for creating and deleting domains, workgroups, and mailboxes Mailbox types Legal field values Special characters Ending the session Quit Timeouts for idle connections CHAPTER 3 APP Commands Initializing and terminating commands Domain commands Workgroup commands Mailbox commands General Options (Settings) Suspension and resinstatement Mailing lists Forward only mailboxes CHAPTER 4 Timezone values CHAPTER 5 Reference APP data types Definitions

4 Data types Input attributes Related information Mailbox Folder Names Using Webmail to encode folder names User name and password rules Mailbox user name Password Mailbox account holder Forward address constraints Parsing rules Some definitions Whitespace Label Double-quoted string Client syntax parsing Command Command Name Attribute-Value Pairs Attribute Name & double-quoted value Value Parsing the value further Server syntax parsing Response Status line Other response data Value Parsing the response further Protocol syntax Related information Java prerequisite Example error Identifying the problem Solution Example of APP usage CHAPTER 6 Glossary Revisions Index Contents

5 Chapter 1 Overview of the APP This chapter contains the following topics: APP architecture on page 5 Getting started on page 5 APP architecture APP client layer APP server layer The Account Provisioning Protocol (APP) provides a command-based, TCP/IP protocol that gives external clients a simplified command set to manage mailbox accounts. An APP client may be as simple as a small Perl script that assigns new passwords to a group of mailboxes or as complex as a Web-based front-end that lets users change their individual mailbox preferences. All APP clients contain code that calls one or more of the APP commands. The APP requires a secure connection between the server and a client. Your APP client should initiate a connection through a secure tunnel client that provides SSL encryption using port The APP client invokes commands in the APP server. The APP server, in turn, carries out the commands, which modify mailboxes or other OpenSRS services. Getting started TO GET STARTED WITH THE APP 1) Install a secure tunnel client to create a secure socket layer for your sessions. 2) Understand how to initialize and test your sessions. See Using the APP on page 6. Once you learn the basics, use the APP command list for reference. See Chapter 3, APP Commands. 5

6 Chapter 2 Using the APP Overview Here are general steps for using the APP. The topics which follow this provide more detail. TO WORK WITH THE APP 1) Use port 4449 to establish a secure connection to: test (for development and testing) at admin.test.hosted .com or production server at admin.hosted .com See Establishing a secure connection on page 6. 2) Specify the APP version number. See Specifying the version number on page 6. 3) Log in. See Logging in on page 7. 4) Submit commands. See Submitting commands on page 7. 5) End the session. See Ending the session on page 9. In general, you don t perform these steps manually (by typing them in a TELNET session, for example). Instead, you write a script that performs these steps in the order listed. Establishing a secure connection Submit the appropriate commands for the secure tunnel client you have installed. Specifying the version number The APP always expects the following command first: VER VER= 3.4 <CRLF>. <CRLF> 6

7 Replace 3.4 with the current version of the APP. NOTE You must enter a RETURN character followed by a period and then another RETURN after each command you send to the APP. Logging in LOGIN USER="user-admin" DOMAIN="domain" PASSWORD="password" <CRLF>. <CRLF> Replace user-admin, domain, and password with the appropriate values of your administrator account. Submitting commands This section explains the syntax and rules for submitting commands. Command syntax The template for a command is as follows: command attribute= value <CRLF>. <CRLF> Commands consist of a command, followed by white space, followed by zero or more attribute-value pairs separated by white space, followed by a carriage-return with a line-feed (indicated by <CRLF>), a period, and another carriage-return with a line-feed. The values must be enclosed by double quotes. Valid white space characters are Space, Tab, and Carriage-return/line-feed. Rules for creating and deleting domains, workgroups, and mailboxes Hierarchy A strict hierarchy governs the creating and deleting of domains, workgroups, and mailboxes. Listed in order from highest to lowest, that order is company, domain, workgroup, and mailbox. For example, if you want to delete a domain using the APP, the workgroups and mailboxes within a domain must be deleted before that operation will work. Likewise, a user cannot create mailboxes in a specified domain if that domain doesn t already exist. Case-insensitive The APP changes to lowercase all mailbox names (including alias mailboxes, group aliases, and forward-only mailboxes), domain names, and workgroup names. Chapter 2 Using the APP Logging in 7

8 Mailbox types Mailbox accounts can function as one of four possible types: regular mailbox, alias, forwardonly, or filteronly. In the OpenSRS provisioning system, the mailbox type will change depending on how the mailbox is actually being used. This means that your account billing is more accurate as it is based on what your customers actually do with their mailboxes rather than the way the mailboxes were originally created. For example, if you create an account as a regular mailbox, and then enable it for forwarding and turn off the keep copy flag, you will be charged the rate for a forwardonly account rather than a full mailbox. The type is reflected in the APP command results, so, for example, the GET_DOMAIN_MAILBOXES command shows the account as a forwardonly even though you originally created it as a regular mailbox. NOTE There used to be one additional type - group alias - however, since group aliases have always operated as forwardonly accounts, they are now displayed that way. The existing group alias APP commands continue to work and are equivalent to the associated forward only commands, for example, the CREATE_GROUP_ALIAS_MAILBOX command is equivalent to the CREATE_MAILBOX_FORWARD_ONLY command. Legal field values The following table shows the legal field values for APP data types. Data type Length host 90 Valid domain name (lowercase APP automatically converts uppercase characters). domain 64 Valid domain name (lowercase APP automatically converts uppercase characters). workgroup 30 Starts and ends in a lowercase alphanumeric, otherwise lowercase alphanumeric, hyphen, underscore, or period. mailbox 64 Same as for workgroup. password 54 Any printable ASCII characters. For guidelines on creating passwords, see User name and password rules on page 95. Chapter 2 Using the APP Submitting commands 8

9 Data type Length first name 30 UTF-8 characters. For guidelines on assigning account names, see User name and password rules on page 95. last name 30 UTF-8 characters. For guidelines on assigning account names, see User name and password rules on page 95. Special characters The following ASCII characters has special meaning in the TELNET interface and should not be entered in APP command attributes. ASCII number character APP behavior 3 ^C Stops responding and times out after 2 minutes 5 ^E May or may not ignore irregular behavior 26 ^Z Stops responding and times out after 2 minutes 28 ^\ Stops responding and times out after 2 minutes 29 ^] Comes to TELNET prompt Ending the session Quit The QUIT command terminates your session. QUIT <CRLF>. <CRLF> The server automatically closes its TCP/IP connection. Timeouts for idle connections Your TELNET session will time out if the connection is idle past a certain time period. The default timeout is two minutes. Contact your customer support person if idle timeouts are a problem for you. Chapter 2 Using the APP Ending the session 9

10 Chapter 3 APP Commands The APP commands are listed here, arranged by usage: Initializing and terminating commands on page 11 Domain commands on page 13 Workgroup commands on page 35 Mailbox commands on page 39 Also see Command syntax on page 7. Each command is shown with a full example of its syntax; you should replace the sample values with your own values. Some examples may appear broken across several lines; however, this is for illustration purposes only, and your commands should appear on a single line. Some commands require that the user have a certain level of administration privilege; for example, only Company Administrators can create or delete domains. Permission levels are listed under in the following sections. Permission Company Domain Workgroup Mailbox Can be executed by A company administrator in the same company The above plus domain administrator in same domain All the above plus workgroup administrator in same workgroup All the above plus mailbox owner Also see the glossary definition for administration privileges on page

11 Initializing and terminating commands VER VER VER="<x.x>" Tells the server what version the client is. This must be the first command issued. For example: VER VER= 3.4 None Required VER Version number of client. Command takes 3.4, 3.5, or 3.6. Optional Errors None 6 Unsupported version LOGIN LOGIN USER="<name>" DOMAIN="<domain>" PASSWORD="<pwd>" Authenticates a user to the APP server. For example: LOGIN USER="ralph" DOMAIN="example.com" PASSWORD="5lKnet" Passwords must be printable characters and not include spaces. For guidelines on creating passwords, see User name and password rules on page 95. Required USER Username DOMAIN Domain name PASSWORD Password Optional None Errors 7 Invalid login 15 Invalid password syntax Chapter 3 APP Commands Initializing and terminating commands 11

12 Also see the glossary definition for administration privileges on page 108. QUIT Required Optional Errors QUIT Terminates APP session. None None None None Chapter 3 APP Commands Initializing and terminating commands 12

13 Domain commands CREATE_DOMAIN CREATE_DOMAIN DOMAIN="<domain>" [TIMEZONE="<zone>"] [LANGUAGE="<language>"] [FILTERMX="<domain.tld:port>"] [SPAM_TAG="<tag>"] [SPAM_FOLDER="<folder>"] [SPAM_LEVEL="<level>"] Adds a new domain. Automatically creates the workgroup staff. Company (Customer) level permission Required DOMAIN Domain name; the domain must not already exist. Optional TIMEZONE Time zone for the domain. See Appendix 4, Timezone values. LANGUAGE The default language for all mailboxes in the domain. Defaults to "en" if not set. Valid values are: da, en, es, de, fr, it, nl, no, pt_br, and sv. FILTERMX The Exchange (MX) record to which any filter-only accounts direct messages released from spam quarantine. Valid values are hostname and IP address. Both must formats must specify a port. SPAM_TAG The value of this field is appended to the subject of any message identified as spam. Max. 30 char. SPAM_FOLDER The folder into which spam is delivered for all mailboxes in the domain. If not specified, the domain default is Spam. Max. 30 char. SPAM_LEVEL The agressiveness level of spam filtering. Valid values are NORMAL, HIGH, VERY HIGH, or "" (no value). When set to NORMAL, most spam is caught. When set to HIGH or VERY HIGH, more spam is caught, but the likelihood that non-spam messages (false positives) will be labelled as spam increases accordingly. Returns When the command is issued correctly, APP returns the following message: OK 0 Domain created. Chapter 3 APP Commands Domain commands 13

14 CREATE_DOMAIN Errors 4 Permission denied 8 Invalid domain name syntax 9 Domain name already exists 10 Nonexistent domain (only in version 3.5 and earlier) 104 Domain name is blacklisted 111 Invalid SPAM_LEVEL CREATE_DOMAIN_ALIAS CREATE_DOMAIN_ALIAS DOMAIN="<existing domain>" ALIAS="<new domain alias>" Creates an alias domain. Company (Customer) level permission. Required DOMAIN ALIAS Optional Returns None. When the command is issued correctly, APP returns the following message: OK O Alias created. Errors 4 Permission denied 8 Invalid domain name syntax 9 Domain name already exists 10 Nonexistent domain (only in version 3.5 and earlier) 104 Domain name is blacklisted DELETE_DOMAIN DELETE_DOMAIN DOMAIN="<domain>" [CASCADE="T F"] Removes a domain (including all workgroups and mailboxes if CASCADE is set to T). For example: DELETE_DOMAIN DOMAIN="example.com" CASCADE="T" Company-level permissions Chapter 3 APP Commands Domain commands 14

15 DELETE_DOMAIN Required DOMAIN Domain name Optional CASCADE Boolean T or F, F by default. Cascade= F (or left blank) only deletes the specified domain if it contains no workgroups or mailboxes; otherwise, the command returns error 18 and deletes nothing. Cascade= T enables the command to delete all the workgroups and mailboxes in the domain, if any exist. If the domain has more than 10,000 mailboxes, the command displays error 28 and deletes nothing. LIMIT Overrides the default limit of 10,000, and allows you to specify the maximum number of mailboxes allowed. Returns When the command is issued correctly, APP returns the following message: OK 0 Domain deleted. In version 3.5 and later, when CASCADE is specified, the response includes STATUS. For example: STATUS 1 Deleted user user1@b.com STATUS 2 Deleted user user2@b.com STATUS 3 Deleted user user3@b.com STATUS 4 Deleted workgroup staff OK 0 Domain deleted Errors 10 Nonexistent domain (only in version 3.5 and earlier) 18 Related workgroups exist (You tried to delete a domain that contains workgroups, and CASCADE is not set to T.) 28 Too many mailboxes for cascade delete (current mailbox count > current limit) DELETE_DOMAIN_ALIAS DELETE_DOMAIN_ALIAS ALIAS="<domain alias to be deleted>" Deletes an alias domain. Company (Customer) level permission. Required ALIAS Optional None. Chapter 3 APP Commands Domain commands 15

16 DELETE_DOMAIN_ALIAS Returns When the command is issued correctly, APP returns the following message: OK 0 Alias deleted. Errors 4 Permission denied 8 Invalid domain name syntax 10 Nonexistent domain (only in version 3.5 and earlier) CREATE_DOMAIN_WELCOME_ CREATE_DOMAIN_WELCOME_ DOMAIN="<domain>" WELCOME_TEXT="<welcome_text>" WELCOME_SUBJECT="<welcome_subject>" FROM_NAME="<from_name>" FROM_ADDRESS="<from_address>" CHARSET="utf8" MIME_TYPE="text/plain" or "text/html" Creates a welcome message that is sent to every new user who registers on the domain. For example: CREATE_DOMAIN_WELCOME_ DOMAIN="example.com" WELCOME_TEXT="Hello <name>{4} {5}! Thanks for registering! Your ID {0}@{1} <user@example.com> has been successfully created." WELCOME_SUBJECT="Welcome to example.com" FROM_NAME="System Administrator" FROM_ADDRESS="admin@example.com" CHARSET="utf8" MIME_TYPE="text/html" If you issue the command more than once, subsequent commands overwrite the earlier messages. Company (Customer) level administration or domain administration permission. Chapter 3 APP Commands Domain commands 16

17 CREATE_DOMAIN_WELCOME_ Required DOMAIN Domain name. The domain must already exist. WELCOME_TEXT The welcome message text. There are no limitations on the size of the message; however, we recommend that it is no more than characters. In the welcome text, the following substitution variables may be used: {0} Mailbox name {1} Domain name {4} First name {5} Last name For example, suppose a new user, bill.smith@example.com, registers using his first name Bill, his last name Smith, then the welcome message used in the command example above is reformatted as: Hello Bill Smith! Thanks for registering! Your ID bill.smith@example.com has been successfully created. WELCOME_SUBJECT The subject line of the message; must be less than 4000 characters. FROM_NAME Name of the sender; must be UTF-8 so that international characters are supported. Any other format results in a syntax error. FROM_ADDRESS Must be a valid address. Use the full address, including the domain. CHARSET Must be utf8. MIME_TYPE Can be text/plain or text/html. If WELCOME_TEXT is plain, then MIME TYPE should be text/plain; if WELCOME_TEXT is HTML, then MIME_TYPE should be text/html. Optional Returns None When the command is issued correctly, APP returns the following message: OK 0 Welcome attributes created for the domain. Chapter 3 APP Commands Domain commands 17

18 CREATE_DOMAIN_WELCOME_ Errors 1 error (if one or more of the required parameters are not present or are incorrect) 5 Internal system error (if failures occur when APP invokes the back end DB procedures) 8 Invalid domain name syntax. Domain does not comply with RFC conventions. 10 Nonexistent domain (only in version 3.5 and earlier) GET_COMPANY_DOMAINS GET_COMPANY_DOMAINS [LIMIT="<n>"] Returns a list of domains within the current company. For example: GET_COMPANY_DOMAINS LIMIT= 200 Required Company-level permissions None Optional LIMIT Restricts the size of the list returned (the default is 1,000,000). LIMIT must be a positive integer. The command does not return errors on non-valid LIMIT values. Chapter 3 APP Commands Domain commands 18

19 GET_COMPANY_DOMAINS Returns When the command is issued correctly, APP returns the following message: In version 3.4: DOMAIN CREATE_DATE "example1.com","01/01/2004" "example2.com","01/01/2004" "example3.com","01/01/2004" NOTE In version 3.4, this command always returns 01/01/2004 as the create_date. In versions 3.5 and later: OK 0 Success DOMAIN,TYPE,MAILBOX_COUNT,FORWARD_COUNT,ALIAS_COUNT "example1.com","domain","0","0","0","0" "example2.com","domain","0","0","0","0" "example3.com","domain","0","0","0","0" "example4.com","domain","0","0","0","0" "example5.com","domain","0","0","0","0" Errors 10 Nonexistent domain (only in version 3.5 and earlier) 48 Company has too many domains DELETE_DOMAIN_WELCOME_ DELETE_DOMAIN_WELCOME_ DOMAIN="<domain>" Deletes a previously configured domain welcome message. New users who register on the domain after this command is run, do not receive a welcome message. For example: DELETE_DOMAIN_WELCOME_ DOMAIN="example.com" Company (Customer) level administration or domain administration permission. domain must already exist. Required DOMAIN Domain name; the domain must exist. Optional Returns NONE When the command is issued correctly, APP returns the following message: OK 0 Welcome attributes deleted for the domain. Chapter 3 APP Commands Domain commands 19

20 DELETE_DOMAIN_WELCOME_ Errors 1 error (if the DOMAIN parameter is not specified) 5 Internal system error (if failures occur when APP invokes the back end DB procedures) 8 Invalid domain name syntax. Domain does not comply with RFC conventions. 10 Nonexistent domain (only in version 3.5 and earlier) GET_DOMAIN GET_DOMAIN DOMAIN="<domain>" Display details about a domain. For example: GET_DOMAIN DOMAIN="example.com" Required Domain-level permissions or higher The specified domain must exist. Chapter 3 APP Commands Domain commands 20

21 GET_DOMAIN Returns When the command is issued correctly, APP returns the following message: In version3.4 OK 0 Success DOMAIN= "example.com" BRANDNAME= "<brand> " CATCHALLUSER= " " INBOUND SMTP= "mx.cust.example.hossted .com " IP= "mail.cust.example.hosted .com " NAME= "example.com " OUTBOUNDSMTP= "smtp.cust.example.hosted .com " PARENT= " " QUESTION= " " SPAM_TAG= "SPAM " SPAM_FOLDER= "SPAM " SPAM_LEVEL= "NORMAL" DISABLED= "F " In version3.5 OK 0 Success DOMAIN= "example.com" BRANDNAME= "<brand> " CATCHALLUSER= " " INBOUND SMTP= "mx.cust.example.hossted .com " IP= "mail.cust.example.hosted .com " NAME= "example.com " OUTBOUNDSMTP= "smtp.cust.example.hosted .com " SPAM_TAG= "SPAM " SPAM_FOLDER= "SPAM " SPAM_LEVEL= "NORMAL" DISABLED= "F " ALIASES="bb.com,ba.com,bd.com BRANDNAME The brand associated with this domain. CATCHALLUSER Catch-all mailbox account for this domain. DOMAIN The name of the domain (e.g. "example.com") INBOUNDSMTP Inbound hostname. IP Domain hostname. NAME Domain name. Chapter 3 APP Commands Domain commands 21

22 GET_DOMAIN OUTBOUNDSMTP Outbound hostname. SPAM_TAG A text tag appended to any the subject of any messages identified as spam. Empty if no tag is specified. Max. 30 char. SPAM_FOLDER The folder to which messages identified as spam are delivered. This value is empty if no folder has been specified; however, the system default of Spam will be applied to the domain.max. 30 char. SPAM_LEVEL The agressiveness level of spam filtering. Value may be NORMAL, HIGH, VERY HIGH, or " " (not set). DISABLED Indicates whether the domain is disabled. Valid values are T and F. Errors 10 Nonexistent domain (only in version 3.5 and earlier) GET_DOMAIN_BRAND GET_DOMAIN_BRAND DOMAIN= "<domain>" Display details about a domain. For example: GET_DOMAIN_BRAND DOMAIN= "example.com " Required Returns Errors Domain-level permissions or higher The specified domain must exist. When the command is issued correctly, APP returns the following message: OK 0 success BRANDCODE= "<code>" BRANDCODE The name of the brand that is associated with this domain. 10 Nonexistent domain (only in version 3.5 and earlier) Chapter 3 APP Commands Domain commands 22

23 CHANGE_DOMAIN CHANGE_DOMAIN DOMAIN="<domain_name>" [LANGUAGE="<language>"] [TIMEZONE="<zone>"] [FILTERMX="<domain.tld:port>"] [SPAM_TAG="<tag>"] [SPAM_FOLDER="<folder>"] [SPAM_LEVEL="<level>"] Changes the settings for a domain. Domain-level permissions Required DOMAIN Domain name. DOMAIN must already exist. At least one optional argument. Optional LANGUAGE The default language for all mailboxes in the domain. Defaults to "en" if not set. Valid values are as follows: da, en, es, de, fr, it, nl, no, pt_br, and sv. TIMEZONE Time zone for the domain. See Appendix 4, Timezone values. FILTERMX The Exchange (MX) record to which any filter-only accounts direct messages released from spam quarantine. Valid values are hostname and IP address. Both must formats must specify a port. SPAM_TAG The value of this field will be appended to the subject of any message identified as spam. To remove an existing tag, as opposed to overwriting it, leave the value empty (i.e., SPAM_TAG="").Maximum 30 characters. SPAM_FOLDER Specifies the folder into which spam will be delivered for all future created mailboxes in the domain. Max. 30 char. NOTE All existing mailboxes will retain their current domain level setting. If you need to change the SPAM_FOLDER for these mailboxes, it will have to be done at the mailbox level. See CHANGE_MAILBOX on page 44. SPAM_LEVEL The agressiveness level of spam filtering. Valid values are NORMAL, HIGH, VERY HIGH, or "" (no value). When set to NORMAL, most spam is caught. When set to HIGH or VERY HIGH, more spam is caught, but the likelihood that non-spam messages (false positives) will be labelled as spam increases accordingly. Chapter 3 APP Commands Domain commands 23

24 CHANGE_DOMAIN Returns When the command is issued correctly, APP returns the following message: OK 0 Domain is updated. Errors 4 Permission denied 8 Invalid domain name syntax 10 Nonexistent domain (only in version 3.5 and earlier) 37 Invalid domain type 111 Invalid SPAM_LEVEL SET_DOMAIN_ADMIN SET_DOMAIN_ADMIN DOMAIN="<domain>" MAILBOX="<mailbox>" [STATE="T F"] Grants or removes administration privileges over the domain to which the mailbox already belongs. For example: SET_DOMAIN_ADMIN DOMAIN="example.com" MAILBOX="foo" STATE="T" If adding domain-administrator, this command tries to remove any other administrator privileges the mailbox already has (Workgroup, Company), and fails if the caller has insufficient permission to do so. If removing privileges, this command returns OK 0 if the mailbox did not have Domain administrator in the first place. NOTE SET_DOMAIN_ADMIN replaces the deprecated commands CREATE_DOMAIN_ADMIN and DELETE_DOMAIN_ADMIN. Company-level permissions. Required DOMAIN MAILBOX Optional STATE Boolean T or F. Chapter 3 APP Commands Domain commands 24

25 SET_DOMAIN_ADMIN Returns When the command is issued correctly, APP returns the following message: OK 0 Errors 10 Nonexistent domain (only in version 3.5 and earlier) 17 Nonexistent mailbox 17 Invalid mailbox type (if mailbox is one of type: alias, or forward_only SET_DOMAIN_BRAND SET_DOMAIN_BRAND DOMAIN="<domain>" BRAND_CODE="<code>" Assigns a brand to the domain For example: SET_DOMAIN_BRAND DOMAIN=""example.com" BRAND_CODE="mycoolbrand" Company-level permissions. Required DOMAIN Domain name. must already exist NOTE You must specify at least one of the optional attributes. Optional BRAND The brand associated with this domain. BRAND_CODE Name of the brand as it appears in the MAC or is returned by GET_DOMAIN_BRAND Returns When the command is issued correctly, APP returns the following message: OK 0 Errors 10 Nonexistent domain (only in version 3.5 and earlier) ER 52 Brand Code not found Chapter 3 APP Commands Domain commands 25

26 SET_DOMAIN_CATCH_ALL_MAILBOX SET_DOMAIN_CATCH_ALL_MAILBOX DOMAIN="<domain>" [MAILBOX="<mailbox>"] [STATE="T"] Sets the domain catch-all mailbox, which receives any mail sent to a nonexistent mailbox in the domain. This prevents mail from bouncing. The catch-all mailbox must be a mailbox within the domain. For example: SET_DOMAIN_CATCH_ALL_MAILBOX DOMAIN="example.com" MAILBOX="default" STATE="T" You must set STATE as T to enable the mailbox. Setting only MAILBOX and DOMAIN specifies a pre-existing mailbox as a catch-all mailbox, but does not activate it. Domain-level permissions. Required DOMAIN STATE T turns the feature on and F turns it off. MAILBOX The mailbox to be made a catch-all. NOTE MAILBOX is required only when enabling. Optional None Errors 10 Nonexistent domain (only in version 3.5 and earlier) 17 Nonexistent mailbox 17 Invalid mailbox type (if mailbox is one of type: alias, or forward_only) 20 Invalid catch-all state (you tried to set STATE= T without specifying a value for MAILBOX) Chapter 3 APP Commands Domain commands 26

27 SET_DOMAIN_DISABLED_STATUS SET_DOMAIN_DISABLED_STATUS DOMAIN="<domain>" Enables or disables the specified domain. For example: SET_DOMAIN_DISABLED_STATUS DOMAIN="example.com" DISABLED="T" NOTE This command can only executed by Company Admins and higher. A domain disabled by a Super Admin cannot not be enabled by a Company Admin Company-level permissions. Required DOMAIN DISABLED T disables the domain and F enables it. Optional Returns None When the command is issued correctly, APP returns the following message: OK 0 success Errors GET_NUM_DOMAIN_MAILBOXES Required Optional GET_NUM_DOMAIN_MAILBOXES DOMAIN="<domain>" Gets the number of mailboxes in a domain and displays by mailbox type. For example: GET_NUM_DOMAIN_MAILBOXES DOMAIN="example.com" Domain-level permissions. DOMAIN None Chapter 3 APP Commands Domain commands 27

28 GET_NUM_DOMAIN_MAILBOXES Returns When the command is issued correctly, APP returns the following message: In version 3.4: OK 0 NORMAL="2" GROUP_ALIAS="0X ALIAS= 0 FORWARD_ONLY="0" POPLINK="0" DOMAIN_CATCH_ALL="F" In version 3.5 and later: OK 0 MAILBOX="2" ALIAS="0X FORWARD_ONLY="0" FILTER="" DOMAIN_CATCH_ALL="F" Errors 10 Nonexistent domain (only in version 3.5 and earlier) GET_DOMAIN_MAILBOXES GET_DOMAIN_MAILBOXES DOMAIN="<domain>" [LIMIT="<n>"] Returns a list of all mailbox names in the domain, along with their types and workgroup names. For example: GET_DOMAIN_MAILBOXES DOMAIN="example.com" LIMIT="1000" Domain-level permissions Required DOMAIN Optional LIMIT Sets the maximum number of mailboxes the command will return. The default limit is 100,000 (mailboxes), which can be set lower. Use a lower number to speed up the command's processing; the more mailboxes the command needs to return, the longer it will take to return the results. NOTE If you specify LIMIT as over 100K, the command ignores the request and instead uses the default of 100K, but returns no error. Administrators can set LIMIT to be higher than the default. Chapter 3 APP Commands Domain commands 28

29 GET_DOMAIN_MAILBOXES Returns When the command is issued correctly, APP returns the following message: In version 3.4: OK 0 MAILBOX TYPE WORKGROUP "mb1" "NORMAL" "staff", "mb2" "OTHER" "staff", "mb3" "NORMAL" "staff" In version 3.5 and later: OK 0 Success MAILBOX,TYPE,WORKGROUP,ALIAS TARGET, FORWARD_RECIPIENT,FORWARD_RECIPIENT_COUNT "1","mailbox","994","","","" "24nospam","mailbox","staff","","","" "w4","forward","fo","","w1@b.com","1" "second1","alias","unknown","second@example.adm","", "" "a16","mailbox","staff","","","2" NOTE In version 3.5 and later, f FORWARD_RECIPIENT_COUNT >1, then FORWARD_RECIPIENT is not displayed. Errors 10 Nonexistent domain (only in version 3.5 and earlier) 1 error (LIMIT is negative or non-numeric) 46 Domain has too many mailboxes (Number of mailboxes to be returned is over the specified LIMIT) GET_DOMAIN_MAILBOX_LIMITS Required Optional GET_DOMAIN_MAILBOX_LIMITS DOMAIN="<domain>" Returns the limits for each mailbox type. For example: GET_DOMAIN_MAILBOX_LIMITS DOMAIN="example.com" Domain-level permissions. DOMAIN None Chapter 3 APP Commands Domain commands 29

30 GET_DOMAIN_MAILBOX_LIMITS Returns When the command is issued correctly, APP returns the following message: In version 3.4: OK 0 Success MAILBOX="500" FILTER_ONLY="500" ALIAS="600" FORWARD_ONLY="500" MAILING_LIST="500" Since the same limit applies to MAILBOX, FILTER_ONLY, FORWARD_ONLY, and MAILING_LIST, each of these values will be the same, and will be the largest of the values set using SET_DOMAIN_MAILBOX_LIMITS. In version 3.5 and later: OK 0 Success USER="500" ALIAS="600" In version 3.5 and later, the command returns only USER and ALIAS limits and the value of ALIAS is the largest of the values. Errors SET_DOMAIN_MAILBOX_LIMITS Required SET_DOMAIN_MAILBOX_LIMITS DOMAIN="<domain>" Sets the number of each mailbox type that can be created. For example: SET_DOMAIN_MAILBOX_LIMITS DOMAIN="example.com" MAILBOX="500" FILTER_ONLY="150" Company Admins and higher DOMAIN Chapter 3 APP Commands Domain commands 30

31 SET_DOMAIN_MAILBOX_LIMITS Optional MAILBOX In version 3.4. FILTER_ONLY In version 3.4. ALIAS The number of aliases that can be created. FORWARD_ONLY In version 3.4. MAILING_LIST In version 3.4. USER In version 3.5 and later. The largest of the values set for MAILBOX, FILTER_ONLY, FORWARD_ONLY, and MAILING_LIST Returns When the command is issued correctly, APP returns the following message: In version 3.4: OK 0 Success MAILBOX="500" FILTER_ONLY="500" ALIAS="600" FORWARD_ONLY="500" MAILING_LIST="500" Since the same limit applies to MAILBOX, FILTER_ONLY, FORWARD_ONLY, and MAILING_LIST, each of these values will be the same, and will be the largest of the values set using SET_DOMAIN_MAILBOX_LIMITS. In version 3.5 and later: OK 0 Success USER="500" ALIAS="600" In version 3.5 and later, the command returns only USER and ALIAS limits and the value of USER is the largest of the values set for MAILBOX, FILTER_ONLY, FORWARD_ONLY, and MAILING_LIST. Errors Chapter 3 APP Commands Domain commands 31

32 SET_DOMAIN_ALLOW_LIST SET_DOMAIN_ALLOW_LIST DOMAIN="<domain>" *domain.tld" Creates a new Allow Sender List for the domain. WARNING Any previously existing Allow Sender List for the domain will be overwritten without notification. Domain level permissions. Required DOMAIN LIST Maximum 300 entries. NOTE Domains entered in the LIST attribute require an asterisk (*) as illustrated above in the syntax example. The LIST is \n separated. Asterisk (*) is the only allowed wildcard. Multiple asterisks are accepted. Optional Returns None When the command is issued correctly, APP returns the following message: OK 0 Errors 2 Required attribute missing 10 Nonexistent domain (only in version 3.5 and earlier) SET_DOMAIN_BLOCK_LIST SET_DOMAIN_BLOCK_LIST DOMAIN="<domain>" LIST="user@domain.tld *domain.tld" Creates a new Block Sender List for the domain. WARNING Any previously existing Block Sender List for the domain will be overwritten without notification. Domain level permissions. Chapter 3 APP Commands Domain commands 32

33 SET_DOMAIN_BLOCK_LIST Required DOMAIN LIST Maximum 300 entries. NOTE Domains entered in the LIST attribute require an asterisk (*) as illustrated above in the syntax example. The LIST is \n separated. Asterisk (*) is the only allowed wildcard. Multiple asterisks are accepted. Optional Returns None When the command is issued correctly, APP returns the following message: OK 0 Errors 2 Required attribute missing 10 Nonexistent domain (only in version 3.5 and earlier) GET_DOMAIN_ALLOW_LIST GET_DOMAIN_ALLOW_LIST DOMAIN="<domain>" Returns the Allow Sender List for the domain. Domain level permissions. Required DOMAIN Optional Returns None When the command is issued correctly, APP returns the following message: OK 0 List="fred@gmail.com yahoo.com" Errors 2 Required attribute missing 10 Nonexistent domain (only in version 3.5 and earlier) Chapter 3 APP Commands Domain commands 33

34 GET_DOMAIN_BLOCK_LIST GET_DOMAIN_BLOCK_LIST DOMAIN="<domain>" Returns the Block Sender List for the domain. Domain level permissions. Required DOMAIN Optional None Errors 2 Required attribute missing 10 Nonexistent domain (only in version 3.5 and earlier) Chapter 3 APP Commands Domain commands 34

35 Workgroup commands CREATE_WORKGROUP CREATE_WORKGROUP WORKGROUP="<group>" DOMAIN="<domain>" Creates a workgroup within the specified domain. For example: CREATE_WORKGROUP WORKGROUP="db-techies" DOMAIN="example.com" Domain level permission Required WORKGROUP DOMAIN Optional Returns None. When the command is issued correctly, APP returns the following message: OK 0 Workgroup created. Errors 10 Nonexistent domain (only in version 3.5 and earlier) 11 Invalid workgroup name syntax 12 Workgroup already exists GET_DOMAIN_WORKGROUPS GET_DOMAIN_WORKGROUPS DOMAIN="<domain>" [LIMIT= <x> ] Returns a list of workgroups in the specified domain. For example: GET_DOMAIN_WORKGROUPS DOMAIN="example.com" LIMIT= 50 Domain-level permissions. Required DOMAIN Must be an existing domain. Optional LIMIT Restricts the number of workgroups returned; the default is 100,000. If you specify a number greater than 100,000, the number is ignored, and the default value of 100,000 is used. LIMIT must be a positive integer.. Chapter 3 APP Commands Workgroup commands 35

36 GET_DOMAIN_WORKGROUPS Returns When the command is issued correctly, APP returns the following message: In version 3.4: OK 0 WORKGROUP CREATE_DATE "staff" "01/01/2004", "test1" "01/01/2004" NOTE The CREATE_DATE value is always listed as 01/01/2004. In version 3.5 and later: OK 0 Success WORKGROUP,MAILBOX_COUNT,FORWARD_COUNT,ALIAS_COUNT "994","11","3","5","0" "blob","0","0","0","0" "bubba","0","0","0","0" Errors 10 Nonexistent domain (only in version 3.5 and earlier) 46 Domain has too many workgroups DELETE_WORKGROUP DELETE_WORKGROUP WORKGROUP="<group>" DOMAIN="<domain>" [CASCADE="T F"] Removes a workgroup from the specified domain. For example: DELETE_WORKGROUP WORKGROUP="db-techies" DOMAIN="example.com" CASCADE="T" Domain-level permissions. Required WORKGROUP Workgroup name. DOMAIN Domain name. Chapter 3 APP Commands Workgroup commands 36

37 DELETE_WORKGROUP Optional CASCADE Boolean T or F, F by default. When set to T, enables the command to delete all mailboxes in the domain, if any exist. If the workgroup has more than a specified number of mailboxes, the command displays error 28 and deletes nothing. LIMIT Overrides the default limit. Specify the maximum number of mailboxes. Returns When the command is issued correctly, APP returns the following message: OK 0 Workgroup deleted. Errors 10 Nonexistent domain (only in version 3.5 and earlier) 13 Nonexistent workgroup 28 Too many mailboxes for cascade delete (current mailbox count > current limit) SET_WORKGROUP_ADMIN SET_WORKGROUP_ADMIN DOMAIN="<domain>" MAILBOX="<mailbox>" [STATE="T F"] Grants or removes administration privileges over the workgroup to which the mailbox already belongs. For example: SET_WORKGROUP_ADMIN DOMAIN="example.com" MAILBOX="db-admin" STATE="T" If adding administrator privileges, this command attempts to remove any other administrator privileges (Company, Domain) the mailbox already has and fails if the caller has insufficient permission to do so. If removing privileges, this command returns OK 0 if the mailbox did not have Workgroup administrator in the first place. Domain-level permissions. Required DOMAIN MAILBOX Optional STATE Boolean T or F. T means grant Workgroup administration privileges (default), while F means remove privileges. Chapter 3 APP Commands Workgroup commands 37

38 SET_WORKGROUP_ADMIN Returns When the command is issued correctly, APP returns the following message: OK 0 Errors 10 Nonexistent domain (only in version 3.5 and earlier) 17 Nonexistent mailbox or 17 Invalid mailbox type (if mailbox is one of type: alias or forward_only) Chapter 3 APP Commands Workgroup commands 38

39 Mailbox commands General GET_MAILBOX_AVAILABILITY GET_MAILBOX_AVAILABILITY DOMAIN="<domain>" MAILBOX_LIST="<mailbox1,mailbox2,...mailboxN>" Takes a list of mailbox names in a domain and returns whether or not they exist. For example: GET_MAILBOX_AVAILABILITY DOMAIN="example.com" MAILBOX_LIST="joe,rsmith,janew" Domain-level permissions. Required DOMAIN Domain name. MAILBOX_LIST Comma=delimited list of mailbox names. Optional Returns None. When the command is issued correctly, APP returns the following message: OK 0 Success AVAILABLE_LIST="T,T,F" AVAILABLE_LIST indicates whether each mailbox listed in the request exists. "T" indicates that the mailbox exists. Errors 10 Nonexistent domain (only in version 3.5 and earlier) Chapter 3 APP Commands Mailbox commands 39

40 GET_ALTERNATE_MAILBOX_NAMES GET_ALTERNATE_MAILBOX_NAMES MAILBOX_LIST="<mailbox1,mailbox2,...mailboxN>" Given a comma-delimited list of mailbox names (in the form mailbox@domain), returns the same list with alternate suggestions for those which are already taken. For example: GET_ALTERNATE_MAILBOX_NAMES MAILBOX_LIST="foo@bar.com,baz@bar.com" Use this command as an alternative to the command GET_MAILBOX_AVAILABILITY. None Required MAILBOX_LIST Candidate mailbox names. Optional Returns Errors None. When the command is issued correctly, APP returns the following message: OK 0 MAILBOX_LIST="foo1@bar.com,baz@bar.com" An invalid mailbox in the list will be replaced with *nodomain* Chapter 3 APP Commands Mailbox commands 40

41 CREATE_MAILBOX CREATE_MAILBOX DOMAIN="<domain>" WORKGROUP="<group>" MAILBOX="<name>" PASSWORD="<pwd>" [FIRST_NAME="<first>"] [LAST_NAME="<last>"] [TITLE="<title>"] [PHONE="<phone_number>"] [FAX="<fax_number>"] [TIMEZONE="<zone>"] [LANGUAGE="<language>"] [FILTERONLY="T F"] [SPAM_TAG="<tag>"] [SPAM_FOLDER="<folder>"] [SPAM_LEVEL="<level>"] NOTE SPAM_TAG and SPAM_FOLDER are not supported when creating a filteronly mailbox. Adds a new mailbox to the specified domain. For example: CREATE_MAILBOX DOMAIN="example.com" WORKGROUP="staff" MAILBOX="ken" PASSWORD="s0up@K" FIRST_NAME="first" LAST_NAME="last" TITLE="title" PHONE=" " TIMEZONE= Europe/Amsterdam LANGUAGE="en" Workgroup level permission Required MAILBOX Must not already exist in DOMAIN. PASSWORD Must consist entirely of printable, non-space characters. For guidelines on creating passwords, see User name and password rules on page 95. WORKGROUP Must exist in DOMAIN. DOMAIN Chapter 3 APP Commands Mailbox commands 41

42 CREATE_MAILBOX Optional FILTERONLY Must be T in order to create a filter-only or spam quarantine mailbox. FIRST_NAME Mailbox user s first name. LAST_NAME Mailbox user s last name. PHONE Mailbox user s phone number. FAX Mailbox user s fax number; can be a maximum of 30 characters. TITLE Mailbox user s job title. TIMEZONE Mailbox user's time zone. See Appendix 4, Timezone values. LANGUAGE Mailbox user s preferred language. Valid values are as follows: da, en, es, de, fr, it, nl, no, pt_br, and sv. SPAM_TAG The value of this field will be appended to the subject of any message identified as spam. Max. 30 char. This is not supported for filteronly accounts. SPAM_FOLDER Specifies the folder into which spam will be delivered for the mailbox with the following parameters: argument max length is 128 characters and should take the form of a dot separated folder path; individual folders cannot exceed 30 characters. This is not supported for filteronly accounts. SPAM_LEVEL The agressiveness level of spam filtering. Valid values are NORMAL, HIGH, VERY HIGH, and ""(none). When set to NORMAL, most spam is caught. When set to HIGH or VERY HIGH, more spam is caught, but the likelihood that non-spam messages (false positives) will be labelled as spam increases accordingly. If this value is not set, the mailbox uses the SPAM_LEVEL setting for the next highest level (for example, domain or company). NOTE For guidelines on defining the MAILBOX, PASSWORD, FIRST_NAME, and LAST_NAME attributes, see User name and password rules on page 95. Chapter 3 APP Commands Mailbox commands 42

43 CREATE_MAILBOX Returns When the command is issued correctly, APP returns the following message: OK 0 Mailbox created. Errors 10 Nonexistent domain (only in version 3.5 and earlier) 13 Nonexistent workgroup 14 Invalid mailbox name syntax 15 Invalid password syntax. Password must contain only alpha, numeric, alphanumeric and ~!@#$%^&'*() _=+/*\][{}:;><,.`? 15 Invalid password syntax. Password must not be empty. 15 Invalid password syntax. Password must not be more than 54 characters long. 16 Mailbox already exists 111 Invalid SPAM_LEVEL 112 Maximum number jof mailboxes of this type for this domain reached SET_MAIL_ADMIN SET_MAIL_ADMIN DOMAIN="<domain>" MAILBOX="<mailbox>" [STATE="T F"] Grants or removes administration privileges to view and change mailboxes. For example: SET_MAIL_ADMIN DOMAIN="example.com" MAILBOX="foo" STATE="T" Domain-level permissions. Required DOMAIN MAILBOX Optional STATE Boolean T or F. The default is T. Returns When the command is issued correctly, APP returns the following message: OK 0 Errors 10 Nonexistent domain (only in version 3.5 and earlier) 17 Nonexistent mailbox 17 Invalid mailbox type (if mailbox is one of type: alias or forward_only) Chapter 3 APP Commands Mailbox commands 43

44 CHANGE_MAILBOX CHANGE MAILBOX DOMAIN="<domain>" MAILBOX="<mailbox>" [WORKGROUP="<group>"] [PASSWORD="<pwd>"] [FIRST_NAME="<first>"] [LAST_NAME="<last>"] [TITLE="<title>"] [PHONE="<number>"] [FAX="<fax_number>"] [NEW_MAILBOX_NAME="<mailbox>"] [TIMEZONE="<zone>"] [LANGUAGE="<language>"] [FILTERONLY="T F"] [SPAM_TAG="<tag>"] [SPAM_FOLDER="<folder>"] [SPAM_LEVEL="<level>"] Changes the mailbox attributes listed below. For example: CHANGE MAILBOX DOMAIN="example.com" MAILBOX="kenny" WORKGROUP="staff" PASSWORD="s0upKa" FIRST_NAME="Ken" LAST_NAME="Dryden" TITLE="Legal Counsel" PHONE=" " NEW_MAILBOX_NAME="newkenny" TIMEZONE="Europe/Amsterdam" LANGUAGE="en" FILTERONLY="T" If you specify a different domain, it creates the mailbox in that domain. If the domain is not specified, the new mailbox is created in the same domain as the old one. For example: CHANGE_MAILBOX DOMAIN="example.com" MAILBOX="rigby" NEW_MAILBOX_NAME="riggs@foo.com" This example renames rigby@example.com to riggs@foo.com. NOTE Only mailboxes, forwards, and filters can be renamed. Mailbox level permissions Chapter 3 APP Commands Mailbox commands 44

45 CHANGE_MAILBOX Required MAILBOX The current name of the mailbox. Can be used with NEW_MAILBOX_NAME when you want to rename the mailbox. DOMAIN Domain name. NOTE At least one optional attribute must be set. Optional PASSWORD Must consist entirely of printable, non-space characters. For guidelines on creating passwords, see User name and password rules on page 95. FIRST_NAME Mailbox user s first name. LAST_NAME Mailbox user s last name. PHONE Mailbox user s phone number. FAX Mailbox user s fax number; can be a maximum of 30 characters. TITLE Mailbox user s job title. WORKGROUP Adds a new workgroup for the specified mailbox; must be a valid workgroup in DOMAIN. NEW_MAILBOX_NAME The new name for the mailbox. Can be used with MAILBOX when you want to rename the mailbox. TIMEZONE Mailbox user's time zone. See Appendix 4, Timezone values. LANGUAGE Mailbox user s language. Valid values are as follows: da, en, es, de, fr, it, nl, no, pt_br, and sv. FILTERONLY Set the FILTERONLY value to F to change a filter-only mailbox to a regular mailbox. NOTE You cannot use this command to change a regular mailbox to a filteronly mailbox. <WILL DELETE THIS NOTE.> Chapter 3 APP Commands Mailbox commands 45

46 CHANGE_MAILBOX SPAM_TAG The value of this field will be appended to the subject of any message identified as spam. To remove an existing tag, as opposed to overwriting it, leave the value empty (i.e., SPAM_TAG=" "). Max. 30 char. SPAM_FOLDER Specifies the folder into which spam will be delivered for the mailbox with the following parameters: argument max length is 128 characters and should take the form of a dot separated folder path; individual folders cannot exceed 30 characters. SPAM_LEVEL The agressiveness level of spam filtering. Valid values are NORMAL, HIGH, VERY HIGH, and "" (none). When set to NORMAL, most spam is caught. When set to HIGH or VERY HIGH, more spam is caught, but the likelihood that non-spam messages (false positives) will be labelled as spam increases accordingly. If this value is not set, the mailbox uses the SPAM_LEVEL setting for the next highest level (for example, domain or company). NOTE For guidelines on defining the MAILBOX, PASSWORD, FIRST_NAME, and LAST_NAME attributes, see User name and password rules on page 95. Returns When the command is issued correctly, APP returns the following message: OK 0 Mailbox changed. Errors 10 Nonexistent domain (only in version 3.5 and earlier) 13 Nonexistent workgroup 14 Invalid mailbox name syntax. Mailbox name does not comply with RFC conventions 15 Invalid password syntax. Password must contain only alpha, numeric, alphanumeric and ~!@#$%^&'*() _=+/*\][{}:;><,.`? 15 Invalid password syntax. Password must not be empty. 15 Invalid password syntax. Password must not be more than 54 characters long. 17 Nonexistent mailbox 17 Invalid mailbox type (if mailbox is one of type: alias or forward_only) 111 Invalid SPAM_LEVEL 200 Problem in moving mailbox to workgroup 207 Invalid Timezone value Chapter 3 APP Commands Mailbox commands 46

47 CREATE_ALIAS_MAILBOX CREATE_ALIAS_MAILBOX ALIAS_MAILBOX="<mailbox>" MAILBOX="<mailbox>" DOMAIN="<domain>" Creates a nickname a mailbox name that points to an existing mailbox. For example: CREATE_ALIAS_MAILBOX ALIAS_MAILBOX="jon" MAILBOX="jonathan" DOMAIN="example.com" To create an intra-domain mailbox alias, specify the full address Workgroup level permissions Required MAILBOX A normal user mailbox that exists in the specified domain DOMAIN A domain that already exists on the system ALIAS_MAILBOX Alias name that points to MAILBOX; must be a new mailbox name that doesn t already exist in the domain. To create an intra-domain mailbox alias, specify the full address instead of the username. Optional Returns None When the command is issued correctly, APP returns the following message: OK 0 Mailbox created. Errors 10 Nonexistent domain (only in version 3.5 and earlier) 14 Invalid mailbox name syntax 16 Mailbox already exists 17 Nonexistent mailbox 112 Maximum number of mailboxes of this type for this domain reached Chapter 3 APP Commands Mailbox commands 47

48 RENAME_MAILBOX RENAME_MAILBOX DOMAIN="<domain>" OLD_MAILBOX="<mailbox>" NEW_MAILBOX="<mailbox>" Renames a mailbox and moves all of the mailbox's settings, folders, and aliases to the new name, leaving the old name unused. If you specify a different domain, it creates the mailbox in that domain. If the domain is not specified, the new mailbox is created in the same domain as the old one. For example: RENAME_MAILBOX DOMAIN="example.com" OLD_MAILBOX="rigby" NEW_MAILBOX="riggs@foo.com" This example renames rigby@example.com to riggs@foo.com. NOTE Only mailboxes, forwards, and filters can be renamed. Workgroup-level permissions or higher. Required DOMAIN OLD_MAILBOX NEW_MAILBOX Optional Returns None. When the command is issued correctly, APP returns the following message: OK 0 Mailbox renamed. Errors 10 Nonexistent domain (only in version 3.5 and earlier) 17 Nonexistent mailbox 17 Invalid mailbox type (OLD_MAILBOX isn't a regular user mailbox) 14 Invalid mailbox name syntax (NEW_MAILBOX is invalid mailbox) 16 Mailbox already exists (NEW_MAILBOX already exists) 35 Mailbox has calendaring (a mailbox that has calendaring enabled cannot be renamed) Chapter 3 APP Commands Mailbox commands 48

MXSAVE XMLRPC Web Service Guide. Last Revision: 6/14/2012

MXSAVE XMLRPC Web Service Guide. Last Revision: 6/14/2012 MXSAVE XMLRPC Web Service Guide Last Revision: 6/14/2012 Table of Contents Introduction! 4 Web Service Minimum Requirements! 4 Developer Support! 5 Submitting Transactions! 6 Clients! 7 Adding Clients!

More information

MPP Manager Users Guide

MPP Manager Users Guide MPP Manager Users Guide Spam Quarantine and Email Archive Administration \ August, 2008 MPP Mable of Contents 1 About This Guide 4 1.1 MPP Manager Overview 4 1.2 Other Documentation 4 2 Mppserver MPP Manager

More information

Email Migration Manual (For Outlook 2010)

Email Migration Manual (For Outlook 2010) Email Migration Manual (For Outlook 2010) By SYSCOM (USA) May 13, 2013 Version 2.2 1 Contents 1. How to Change POP3/SMTP Setting for Outlook 2010... 3 2. How to Login to Webmail... 10 3. How to Change

More information

Email Migration Manual (For Outlook Express 6)

Email Migration Manual (For Outlook Express 6) Email Migration Manual (For Outlook Express 6) By SYSCOM (USA) May 13, 2013 Version 1.0 1 Contents 1. How to Change POP3/SMTP Setup for Outlook Express... 3 2. How to Login to Webmail... 7 3. How to Change

More information

Domains Help Documentation This document was auto-created from web content and is subject to change at any time. Copyright (c) 2016 SmarterTools Inc.

Domains Help Documentation This document was auto-created from web content and is subject to change at any time. Copyright (c) 2016 SmarterTools Inc. Help Documentation This document was auto-created from web content and is subject to change at any time. Copyright (c) 2016 SmarterTools Inc. Domains All Domains System administrators can use this section

More information

Email Protection for your account

Email Protection for your account User Guide Revision A SaaS Email Protection Email Protection for your account The Email Protection service works in the cloud to protect your email account from spam, viruses, worms, phishing scams, and

More information

Symantec Hosted Mail Security. Console and Spam Quarantine User Guide

Symantec Hosted Mail Security. Console and Spam Quarantine User Guide Symantec Hosted Mail Security Console and Spam Quarantine User Guide Symantec Hosted Mail Security Console and Spam Quarantine User Guide The software described in this book is furnished under a license

More information

PANDA CLOUD EMAIL PROTECTION 3.3.0 / Administrator s Manual / 1

PANDA CLOUD EMAIL PROTECTION 3.3.0 / Administrator s Manual / 1 PANDA CLOUD EMAIL PROTECTION 3.3.0 / Administrator s Manual / 1 Contents 1 INTRODUCTION TO PANDA CLOUD EMAIL PROTECTION... 5 1.1 WHAT IS PANDA CLOUD EMAIL PROTECTION?... 5 1.2 FUNCTIONALITIES... 5 2 PANDA

More information

FTP Service Reference

FTP Service Reference IceWarp Unified Communications Reference Version 11.3 Published on 1/6/2015 Contents... 3 About... 4 Reference... 5 General Tab... 5 Dialog... 6 FTP Site... 6 Users... 7 Groups... 11 Options... 14 Access...

More information

OpenSRS Email Service DNS Configuration Guide

OpenSRS Email Service DNS Configuration Guide OpenSRS Email Service DNS Configuration Guide September 18, 2008 Table of Contents DNS Configuration...3 Types of DNS records...3 Email Exchange (MX) records...3 Canonical Name (CNAME) records...4 Example

More information

Parallels Plesk Panel

Parallels Plesk Panel Parallels Plesk Panel Copyright Notice ISBN: N/A Parallels 660 SW 39th Street Suite 205 Renton, Washington 98057 USA Phone: +1 (425) 282 6400 Fax: +1 (425) 282 6444 Copyright 1999-2010, Parallels, Inc.

More information

Help for System Administrators

Help for System Administrators Help for System Administrators Help Documentation This document was auto-created from web content and is subject to change at any time. Copyright (c) 2016 SmarterTools Inc. Help for System Administrators

More information

HP A-IMC Firewall Manager

HP A-IMC Firewall Manager HP A-IMC Firewall Manager Configuration Guide Part number: 5998-2267 Document version: 6PW101-20110805 Legal and notice information Copyright 2011 Hewlett-Packard Development Company, L.P. No part of this

More information

Distributor Control Center Private Label/Channel Administrators

Distributor Control Center Private Label/Channel Administrators March 13, 2014 Distributor Control Center Private Label/Channel Administrators Version 2.6.3 Everyone.net Table of Contents Distributor Control Center... 1 1 The Distributor Control Center... 4 1.1 Introduction...

More information

FTP Service Reference

FTP Service Reference IceWarp Server FTP Service Reference Version 10 Printed on 12 August, 2009 i Contents FTP Service 1 V10 New Features... 2 FTP Access Mode... 2 FTP Synchronization... 2 FTP Service Node... 3 FTP Service

More information

Result: Adds an X-header named "X-Company" with the value of "Your Company Name"

Result: Adds an X-header named X-Company with the value of Your Company Name SMTPit Pro SMTPit_AddEmailHeader SMTPit_Clear SMTPit_Configure SMTPit_Connect SMTPit_Disconnect SMTPit_File_Copy SMTPit_File_Delete SMTPit_File_Exists SMTPit_File_Export SMTPit_File_GetPath SMTPit_File_Move

More information

Appendix. Web Command Error Codes. Web Command Error Codes

Appendix. Web Command Error Codes. Web Command Error Codes Appendix Web Command s Error codes marked with * are received in responses from the FTP server, and then returned as the result of FTP command execution. -501 Incorrect parameter type -502 Error getting

More information

How To Manage Your Spam On Graymail On Pc Or Macodeo.Com

How To Manage Your Spam On Graymail On Pc Or Macodeo.Com User Guide Revision E SaaS Email Protection Email Protection for your account The Email Protection service works in the cloud to protect your email account from spam, viruses, worms, phishing scams, and

More information

Cryoserver Archive Lotus Notes Configuration

Cryoserver Archive Lotus Notes Configuration Lotus Notes Configuration Version 1.0 December 2007 Forensic & Compliance Systems Ltd +44 (0)800 280 0525 info@cryoserver.com www.cryoserver.com Contents INTRODUCTION... 3 SMTP ROUTING TO CRYOSERVER...

More information

Sonian Getting Started Guide October 2008

Sonian Getting Started Guide October 2008 Sonian Getting Started Guide October 2008 Sonian, Inc. For Authorized Use Only 1 Create your new archiving account 3 Configure your firewall for IMAP collections 4 (Skip this step if you will be using

More information

WEBROOT EMAIL ARCHIVING SERVICE. Getting Started Guide North America. The best security in an unsecured world. TM

WEBROOT EMAIL ARCHIVING SERVICE. Getting Started Guide North America. The best security in an unsecured world. TM WEBROOT EMAIL ARCHIVING SERVICE Getting Started Guide North America Webroot Software, Inc. World Headquarters 2560 55th Street Boulder CO 80301 USA www.webroot.com 800.870.8102 Table of Contents Create

More information

Using the Cisco Unity Connection Bulk Administration Tool

Using the Cisco Unity Connection Bulk Administration Tool APPENDIXA Using the Cisco Unity Connection Bulk Administration Tool The Cisco Unity Connection Bulk Administration Tool (BAT) allows you to create, update, and delete multiple user accounts or system contacts

More information

SpamPanel Email Level Manual Version 1 Last update: March 21, 2014 SpamPanel

SpamPanel Email Level Manual Version 1 Last update: March 21, 2014 SpamPanel SpamPanel Email Level Manual Version 1 Last update: March 21, 2014 SpamPanel Table of Contents Incoming... 1 Incoming Spam Quarantine... 2 Incoming Log Search... 4 Delivery Queue... 7 Report Non-Spam...

More information

Important Information

Important Information June 2015 Important Information The following information applies to Proofpoint Essentials US1 data center only. User Interface Access https://usproofpointessentials.com MX Records mx1-usppe-hosted.com

More information

SaaS Email Encryption Enablement for Customers, Domains and Users Quick Start Guide

SaaS Email Encryption Enablement for Customers, Domains and Users Quick Start Guide SaaS Email Encryption Enablement for Customers, Domains and Users Quick Start Guide Email Encryption Customers who are provisioned for SaaS Email Encryption can easily configure their Content Policies

More information

Emails sent to the FaxFinder fax server must meet the following criteria to be processed for sending as a fax:

Emails sent to the FaxFinder fax server must meet the following criteria to be processed for sending as a fax: FaxFinder FFx30 T.37 Store & Forward Fax (T.37) Introduction The FaxFinder implements T.37 Store and Forward Fax (RFC2304) to convert emails into facsimile transmissions. The FaxFinder fax server accepts

More information

SpamPanel Reseller Level Manual 1 Last update: September 26, 2014 SpamPanel

SpamPanel Reseller Level Manual 1 Last update: September 26, 2014 SpamPanel SpamPanel Reseller Level Manual 1 Last update: September 26, 2014 SpamPanel Table of Contents Domains... 1 Add Domain... 2 MX verification Tool... 4 Overview... 5 Incoming... 6 Incoming Bandwidth Overview...

More information

Spambrella SaaS Email Encryption Enablement for Customers, Domains and Users Quick Start Guide

Spambrella SaaS Email Encryption Enablement for Customers, Domains and Users Quick Start Guide January 24, 2015 Spambrella SaaS Email Encryption Enablement for Customers, Domains and Users Quick Start Guide Spambrella and/or other noted Spambrella related products contained herein are registered

More information

SaskTel Hosted Exchange Administrator Guide

SaskTel Hosted Exchange Administrator Guide SaskTel Hosted Exchange Administrator Guide Customer Center Administration Portal At least the first of the following tasks (Accept the Terms of Service) needs to be completed before the company portal

More information

SendMIME Pro Installation & Users Guide

SendMIME Pro Installation & Users Guide www.sendmime.com SendMIME Pro Installation & Users Guide Copyright 2002 SendMIME Software, All Rights Reserved. 6 Greer Street, Stittsville, Ontario Canada K2S 1H8 Phone: 613-831-4023 System Requirements

More information

Green House Data Spam Firewall Administrator Guide

Green House Data Spam Firewall Administrator Guide Green House Data Spam Firewall Administrator Guide Spam Firewall Administrator Guide... 2 Navigating the Web Interface... 2 How to Drill Down from the DOMAINS Page to Account Level... 2 Message Logs...

More information

Personal Dashboard User Guide

Personal Dashboard User Guide Version 8.1 800-782-3762 www.edgewave.com 2001 2011 EdgeWave. All rights reserved. The Red Condor and EdgeWave logos and brands are trademarks of EdgeWave. All other trademarks and registered trademarks

More information

Contents CHAPTER 1 IMail Utilities

Contents CHAPTER 1 IMail Utilities Contents CHAPTER 1 IMail Utilities CHAPTER 2 Collaboration Duplicate Entry Remover... 2 CHAPTER 3 Disk Space Usage Reporter... 3 CHAPTER 4 Forward Finder... 4 CHAPTER 5 IMAP Copy Utility... 5 About IMAP

More information

Email: support@apps4rent.com Toll Free: 1-866-716-2040 International: 1-646-506-9354

Email: support@apps4rent.com Toll Free: 1-866-716-2040 International: 1-646-506-9354 1. Check your Welcome e-mail for login credentials for the control panel. 2. Using the login details in the welcome e-mail; login at https://cp.hostallapps.com Adding Domain: 1. On the Home Page of the

More information

Cloud Server powered by Mac OS X. Getting Started Guide. Cloud Server. powered by Mac OS X. AKJZNAzsqknsxxkjnsjx Getting Started Guide Page 1

Cloud Server powered by Mac OS X. Getting Started Guide. Cloud Server. powered by Mac OS X. AKJZNAzsqknsxxkjnsjx Getting Started Guide Page 1 Getting Started Guide Cloud Server powered by Mac OS X Getting Started Guide Page 1 Getting Started Guide: Cloud Server powered by Mac OS X Version 1.0 (02.16.10) Copyright 2010 GoDaddy.com Software, Inc.

More information

Creating a Content Group and assigning the Encrypt action to the Group.

Creating a Content Group and assigning the Encrypt action to the Group. Product Guide Revision A SaaS Email Encryption Enablement for Customers, Domains, and Users Email Encryption Customers who are provisioned for SaaS Email Encryption can easily configure their Content Policies

More information

Guardian Digital Secure Mail Suite Quick Start Guide

Guardian Digital Secure Mail Suite Quick Start Guide Guardian Digital Secure Mail Suite Quick Start Guide Copyright c 2004 Guardian Digital, Inc. Contents 1 Introduction 1 2 Contacting Guardian Digital 2 3 Purpose of This Document 3 3.1 Terminology...............................

More information

Interactive Reporting Emailer Manual

Interactive Reporting Emailer Manual Brief Overview of the IR Emailer The Interactive Reporting Emailer allows a user to schedule their favorites to be emailed to them on a regular basis. It accomplishes this by running once per day and sending

More information

Frequently Asked Questions

Frequently Asked Questions Frequently Asked Questions Table of Contents DNS Settings... 3 MX record... 3 SPF record... 3 Configuring Outbound... 3 Smart host configuration for Exchange 2003... 3 Smart host configuration for Exchange

More information

Email to Alfresco Folder

Email to Alfresco Folder Email to Alfresco Folder notes 009 Created 03/21/2011 T. Patrick Bailey Email to Alfresco Folder A lot of the notes from here are derived from http://wiki.alfresco.com/wiki/inbound_smtp_email_server_configur

More information

BlackBerry Internet Service. Version: 4.5.1. Administration Guide

BlackBerry Internet Service. Version: 4.5.1. Administration Guide BlackBerry Internet Service Version: 4.5.1 Administration Guide Published: 2014-01-22 SWD-20140122155744258 Contents 1 Getting started...6 Administrative feature availability... 6 Availability of features

More information

Parallels Plesk Panel

Parallels Plesk Panel Parallels Plesk Panel Copyright Notice ISBN: N/A Parallels 660 SW 39th Street Suite 205 Renton, Washington 98057 USA Phone: +1 (425) 282 6400 Fax: +1 (425) 282 6444 Copyright 1999-2009, Parallels, Inc.

More information

SSL VPN Portal Options

SSL VPN Portal Options 1. ProSecure UTM Quick Start Guide This quick start guide describes how to use the SSL VPN Wizard to configure SSL VPN portals on the ProSecure Unified Threat Management (UTM) Appliance. The Secure Sockets

More information

SPAMINA Email Service Firewall 3.3.1.1 / Administrator s Manual / 1

SPAMINA Email Service Firewall 3.3.1.1 / Administrator s Manual / 1 SPAMINA Email Service Firewall 3.3.1.1 / Administrator s Manual / 1 Contents 1 INTRODUCTION TO CLOUD EMAIL FIREWALL... 6 1.1 WHAT IS CLOUD EMAIL FIREWALL?...6 1.2 FUNCTIONALITIES...6 2 CLOUD EMAIL FIREWALL

More information

PORTLANDDIOCESE.ORG Email - How to Connect Table of Contents

PORTLANDDIOCESE.ORG Email - How to Connect Table of Contents 1 PORTLANDDIOCESE.ORG Email - How to Connect Table of Contents Email Access via a Web Browser... 2 Email Client Setup... 3 Outlook 2007, 2010 & 2013 for Windows... 3 Outlook for Mac 2011... 5 Mac OS X

More information

Core Filtering Admin Guide

Core Filtering Admin Guide Core Filtering Admin Guide 3193 Red Hill Avenue Costa Mesa, CA 92626 United States p.866.spam.out f.949.203.6425 e. info@spamsoap.com www.spamsoap.com Table of Contents Login... 3 Overview... 3 Quarantine...

More information

WatchDox Administrator's Guide. Application Version 3.7.5

WatchDox Administrator's Guide. Application Version 3.7.5 Application Version 3.7.5 Confidentiality This document contains confidential material that is proprietary WatchDox. The information and ideas herein may not be disclosed to any unauthorized individuals

More information

Adeptia Suite LDAP Integration Guide

Adeptia Suite LDAP Integration Guide Adeptia Suite LDAP Integration Guide Version 6.2 Release Date February 24, 2015 343 West Erie, Suite 440 Chicago, IL 60654, USA Phone: (312) 229-1727 x111 Fax: (312) 229-1736 DOCUMENT INFORMATION Adeptia

More information

CLC Server Command Line Tools USER MANUAL

CLC Server Command Line Tools USER MANUAL CLC Server Command Line Tools USER MANUAL Manual for CLC Server Command Line Tools 2.5 Windows, Mac OS X and Linux September 4, 2015 This software is for research purposes only. QIAGEN Aarhus A/S Silkeborgvej

More information

Configuration Information

Configuration Information Configuration Information Email Security Gateway Version 7.7 This chapter describes some basic Email Security Gateway configuration settings, some of which can be set in the first-time Configuration Wizard.

More information

Version 2.1.x. Barracuda Message Archiver. Outlook Add-In User's Guide

Version 2.1.x. Barracuda Message Archiver. Outlook Add-In User's Guide Version 2.1.x Barracuda Message Archiver Outlook Add-In User's Guide Barracuda Networks Inc. 3175 S. Winchester Blvd Campbell, CA 95008 http://www.barracuda.com Copyright Copyright 2005-2009, Barracuda

More information

Administration Quick Start

Administration Quick Start www.novell.com/documentation Administration Quick Start ZENworks 11 Support Pack 3 February 2014 Legal Notices Novell, Inc., makes no representations or warranties with respect to the contents or use of

More information

Vodafone Hosted Services. Getting your email. User guide

Vodafone Hosted Services. Getting your email. User guide Vodafone Hosted Services Getting your email User guide Welcome. This guide will show you how to get your email, now that it is hosted by Vodafone Hosted Services. Once you ve set it up, you will be able

More information

BlackBerry Mobile Voice System. Version: 5.3. Administration Guide

BlackBerry Mobile Voice System. Version: 5.3. Administration Guide BlackBerry Mobile Voice System Version: 5.3 Administration Guide Published: 2013-06-27 SWD-20130627112233808 Contents 1 Overview...7 2 Preparing to manage BlackBerry MVS user accounts... 8 3 Managing user

More information

ECAT SWE Exchange Customer Administration Tool Web Interface User Guide Version 6.7

ECAT SWE Exchange Customer Administration Tool Web Interface User Guide Version 6.7 ECAT SWE Exchange Customer Administration Tool SWE - Exchange Customer Administration Tool (ECAT) Table of Contents About this Guide... 3 Audience and Purpose... 3 What is in this Guide?... 3 CA.mail Website...

More information

Support for Microsoft Outlook

Support for Microsoft Outlook Support for Microsoft Outlook Kerio Technologies C 1997-2006 Kerio Technologies. All Rights Reserved. Release Date: July 10, 2006 This guide provides detailed description on Kerio Outlook Connector and

More information

Business Internet Email service from Bell User Guide

Business Internet Email service from Bell User Guide Business Internet Email service from Bell User Guide Table Of Contents (click a page number to access that page) Getting Started 3 Access your email remotely using Webmail 3 Basic Features 4 Out Of Office

More information

HP IMC Firewall Manager

HP IMC Firewall Manager HP IMC Firewall Manager Configuration Guide Part number: 5998-2267 Document version: 6PW102-20120420 Legal and notice information Copyright 2012 Hewlett-Packard Development Company, L.P. No part of this

More information

WatchGuard QMS End User Guide

WatchGuard QMS End User Guide WatchGuard QMS End User Guide WatchGuard QMS Overview The WatchGuard QMS device enables spam messages from the WatchGuard XCS to be directed to a local quarantine area that provides spam storage for each

More information

WS_FTP Server. User s Guide. Software Version 3.1. Ipswitch, Inc.

WS_FTP Server. User s Guide. Software Version 3.1. Ipswitch, Inc. User s Guide Software Version 3.1 Ipswitch, Inc. Ipswitch, Inc. Phone: 781-676-5700 81 Hartwell Ave Web: http://www.ipswitch.com Lexington, MA 02421-3127 The information in this document is subject to

More information

Merak Outlook Connector User Guide

Merak Outlook Connector User Guide IceWarp Server Merak Outlook Connector User Guide Version 9.0 Printed on 21 August, 2007 i Contents Introduction 1 Installation 2 Pre-requisites... 2 Running the install... 2 Add Account Wizard... 6 Finalizing

More information

Customer Tips. Xerox Network Scanning HTTP/HTTPS Configuration using Microsoft IIS. for the user. Purpose. Background

Customer Tips. Xerox Network Scanning HTTP/HTTPS Configuration using Microsoft IIS. for the user. Purpose. Background Xerox Multifunction Devices Customer Tips June 5, 2007 This document applies to these Xerox products: X WC Pro 232/238/245/ 255/265/275 for the user Xerox Network Scanning HTTP/HTTPS Configuration using

More information

Quarantine Central for end users: FAQs

Quarantine Central for end users: FAQs Quarantine Central for end users: FAQs About is a leading hosted email services company. Founded in 1994, was one of the first companies to offer hosted email security services to the North American market.

More information

eprism Email Security Suite

eprism Email Security Suite V8.4 eprism Email Security Suite 800-782-3762 www.edgewave.com 2001 2012 EdgeWave. All rights reserved. The EdgeWave logo is a trademark of EdgeWave Inc. All other trademarks and registered trademarks

More information

User guide Business Internet e-mail features

User guide Business Internet e-mail features User guide Business Internet e-mail features Page 1 de 1 Table of content Page Introduction 3 1. How do I access my web based e-mail? 3 2. How do I access/alter these enhancements? 3 A. Basic Features

More information

How to Use Red Condor Spam Filtering

How to Use Red Condor Spam Filtering What is Spam Filtering? Spam filtering is used to detect unsolicited and unwanted email. By looking for certain words in an email's subject line, or through suspicious word patterns or word frequencies

More information

Customer Control Panel Manual

Customer Control Panel Manual Customer Control Panel Manual Contents Introduction... 2 Before you begin... 2 Logging in to the Control Panel... 2 Resetting your Control Panel password.... 3 Managing FTP... 4 FTP details for your website...

More information

4. Client-Level Administration

4. Client-Level Administration 4. Client-Level Administration Introduction to Client Usage The Client Home Page Overview Managing Your Client Account o Editing Your Client Record View Account Status Report Domain Administration Page

More information

End User Guide The guide for email/ftp account owner

End User Guide The guide for email/ftp account owner End User Guide The guide for email/ftp account owner ServerDirector Version 3.7 Table Of Contents Introduction...1 Logging In...1 Logging Out...3 Installing SSL License...3 System Requirements...4 Navigating...4

More information

PORTLANDDIOCESE.ORG Email - How to Connect Table of Contents

PORTLANDDIOCESE.ORG Email - How to Connect Table of Contents 1 PORTLANDDIOCESE.ORG Email - How to Connect Table of Contents Email Access via a Web Browser... 2 Email Client Setup... 3 Outlook 2013 for Windows... 3 Outlook for Mac 2011... 4 Mac OS X 10.6+... 4 iphone

More information

Configuration Information

Configuration Information This chapter describes some basic Email Security Gateway configuration settings, some of which can be set in the first-time Configuration Wizard. Other topics covered include Email Security interface navigation,

More information

Managing Users and Identity Stores

Managing Users and Identity Stores CHAPTER 8 Overview ACS manages your network devices and other ACS clients by using the ACS network resource repositories and identity stores. When a host connects to the network through ACS requesting

More information

Parallels Plesk Automation. Customer s Guide. Parallels Plesk Automation 11.5

Parallels Plesk Automation. Customer s Guide. Parallels Plesk Automation 11.5 Parallels Plesk Automation Customer s Guide Parallels Plesk Automation 11.5 Last updated: 17 March 2015 Contents Quick Start with Hosting Panel 4 Set Up Your First Website... 4 1. Create Your Site... 5

More information

Avira Managed Email Security (AMES) User Guide

Avira Managed Email Security (AMES) User Guide Avira Managed Email Security (AMES) User Guide 1 Product information... 3 1.1 Functionality... 3 1.2 Licensing AMES... 3 2 Getting started with AMES... 4 2.1 Adding a new domain to AMES... 4 2.2 Logging

More information

Using Your New Webmail

Using Your New Webmail Using Your New Webmail Table of Contents Composing a New Message... 2 Adding Attachments to a Message... 4 Inserting a Hyperlink... 6 Searching For Messages... 8 Downloading Email from a POP3 Account...

More information

Sophos for Microsoft SharePoint startup guide

Sophos for Microsoft SharePoint startup guide Sophos for Microsoft SharePoint startup guide Product version: 2.0 Document date: March 2011 Contents 1 About this guide...3 2 About Sophos for Microsoft SharePoint...3 3 System requirements...3 4 Planning

More information

Control Center For one_business

Control Center For one_business March 13, 2014 Control Center For one_business Version 1.1.6 Client Services Table of Contents 1 Preface... 5 1.1 Intended audience... 5 1.2 Overview... 5 2 The Control Center... 6 2.1 Accessing the Control

More information

Ipswitch Client Installation Guide

Ipswitch Client Installation Guide IPSWITCH TECHNICAL BRIEF Ipswitch Client Installation Guide In This Document Installing on a Single Computer... 1 Installing to Multiple End User Computers... 5 Silent Install... 5 Active Directory Group

More information

Live@edu User Guide. Please visit the Helpdesk website for more information: http://www.smu.edu.sg/iits/helpdesk_support/index.asp

Live@edu User Guide. Please visit the Helpdesk website for more information: http://www.smu.edu.sg/iits/helpdesk_support/index.asp IITS Main Office SINGAPORE MANAGEMENT UNIVERSITY Administration Building, Level 11 81, Victoria Street Singapore 188065 Phone: 65-6828 1930 Email: iits@smu.edu.sg Please visit the Helpdesk website for

More information

Configuring Basic Settings

Configuring Basic Settings CHAPTER 12 This chapter describes how to configure basic settings on your ASASM that are typically required for a functioning configuration. This chapter includes the following sections: Configuring the

More information

Manage. Help Documentation. This document was auto-created from web content and is subject to change at any time. Copyright (c) 2016 SmarterTools Inc.

Manage. Help Documentation. This document was auto-created from web content and is subject to change at any time. Copyright (c) 2016 SmarterTools Inc. Help Documentation This document was auto-created from web content and is subject to change at any time. Copyright (c) 2016 SmarterTools Inc. Manage Email Users An email user account represents a person's

More information

Integrated Migration Tool

Integrated Migration Tool IceWarp Unified Communications Version 11.3 Published on 1/6/2015 Contents... 4 Performing Migration... 5 Set up the Domain in IceWarp Server... 5 Create Migrator Email Account... 6 Configure Migration

More information

SME- Mail to SMS & MMS Gateway with NowSMS Quick Start Guide

SME- Mail to SMS & MMS Gateway with NowSMS Quick Start Guide SME- Mail to SMS & MMS Gateway with NowSMS Quick Start Guide One of the typical usage cases for NowSMS is as an E-Mail to SMS & MMS Gateway. E-Mail users can send an SMS or MMS message by sending an e-mail

More information

MailEnable Web Mail End User Manual V 2.x

MailEnable Web Mail End User Manual V 2.x MailEnable Web Mail End User Manual V 2.x MailEnable Messaging Services for Microsoft Windows NT/2000/2003 MailEnable Pty. Ltd. 486 Neerim Road Murrumbeena VIC 3163 Australia t: +61 3 9569 0772 f: +61

More information

Wharf T&T bmail 2010 bmail End User Guide Version 1.0

Wharf T&T bmail 2010 bmail End User Guide Version 1.0 Wharf T&T bmail 2010 bmail End User Guide Version 1.0 Menu How to Activate New Account (Manual) -------------------------------------- 3 How to Manage E-mail Messages -----------------------------------------------

More information

How to configure your Desktop Computer and Mobile Devices post migrating to Microsoft Office 365

How to configure your Desktop Computer and Mobile Devices post migrating to Microsoft Office 365 How to configure your Desktop Computer and Mobile Devices post migrating to Microsoft Office 365 1 Contents Purpose... 3 Office 365 Mail Connections... 3 Finding IMAP server... 3 Desktop computers... 4

More information

1 Mac Mail and IMAP/SMTP Configuration

1 Mac Mail and IMAP/SMTP Configuration 1 Mac Mail and IMAP/SMTP Configuration We recommend against using IMAP/SMTP with the Mac Mail client. Please use MAPI protocol (a.k.a. native Exchange 2010 protocol) with the Mac Mail client. MAPI permits

More information

9236245 Issue 2EN. Nokia and Nokia Connecting People are registered trademarks of Nokia Corporation

9236245 Issue 2EN. Nokia and Nokia Connecting People are registered trademarks of Nokia Corporation 9236245 Issue 2EN Nokia and Nokia Connecting People are registered trademarks of Nokia Corporation Nokia 9300 Configuring connection settings Legal Notice Copyright Nokia 2005. All rights reserved. Reproduction,

More information

Setting Up Scan to SMB on TaskALFA series MFP s.

Setting Up Scan to SMB on TaskALFA series MFP s. Setting Up Scan to SMB on TaskALFA series MFP s. There are three steps necessary to set up a new Scan to SMB function button on the TaskALFA series color MFP. 1. A folder must be created on the PC and

More information

What browsers can I use to view my mail?

What browsers can I use to view my mail? How to use webmail. This tutorial is our how-to guide for using Webmail. It does not cover every aspect of Webmail; What browsers can I use to view my mail? Webmail supports the following browsers: Microsoft

More information

Emailing from The E2 Shop System EMail address Server Name Server Port, Encryption Protocol, Encryption Type, SMTP User ID SMTP Password

Emailing from The E2 Shop System EMail address Server Name Server Port, Encryption Protocol, Encryption Type, SMTP User ID SMTP Password Emailing from The E2 Shop System With recent releases of E2SS (at least 7.2.7.23), we will be allowing two protocols for EMail delivery. A new protocol for EMail delivery Simple Mail Transfer Protocol

More information

Lepide Active Directory Self Service. Configuration Guide. Follow the simple steps given in this document to start working with

Lepide Active Directory Self Service. Configuration Guide. Follow the simple steps given in this document to start working with Lepide Active Directory Self Service Configuration Guide 2014 Follow the simple steps given in this document to start working with Lepide Active Directory Self Service Table of Contents 1. Introduction...3

More information

How To Use The Control Center For One Business On Everyone.Net (For Free)

How To Use The Control Center For One Business On Everyone.Net (For Free) March 13, 2014 Control Center For one_business Version 1.1.6 Client Services Table of Contents 1 Preface... 4 1.1 Intended audience... 4 1.2 Overview... 4 2 The Control Center... 5 2.1 Accessing the Control

More information

Chapter 6 Virtual Private Networking Using SSL Connections

Chapter 6 Virtual Private Networking Using SSL Connections Chapter 6 Virtual Private Networking Using SSL Connections The FVS336G ProSafe Dual WAN Gigabit Firewall with SSL & IPsec VPN provides a hardwarebased SSL VPN solution designed specifically to provide

More information

RoomWizard Synchronization Software Manual Installation Instructions

RoomWizard Synchronization Software Manual Installation Instructions 2 RoomWizard Synchronization Software Manual Installation Instructions Table of Contents Exchange Server Configuration... 4 RoomWizard Synchronization Software Installation and Configuration... 5 System

More information

Once logged in you will have two options to access your e mails

Once logged in you will have two options to access your e mails How do I access Webmail? Webmail You can access web mail at:- http://stu.utt.edu.tt:2095 or https://stu.utt.edu.tt:2096 Enter email address i.e. user name (full email address needed eg. fn.ln@stu.utt.edu.tt

More information

LifeSize UVC Access Deployment Guide

LifeSize UVC Access Deployment Guide LifeSize UVC Access Deployment Guide November 2013 LifeSize UVC Access Deployment Guide 2 LifeSize UVC Access LifeSize UVC Access is a standalone H.323 gatekeeper that provides services such as address

More information

BOTTOM UP THINKING EMAIL SETUP INSTRUCTIONS. Unique businesses require unique solutions CLIENT GUIDE

BOTTOM UP THINKING EMAIL SETUP INSTRUCTIONS. Unique businesses require unique solutions CLIENT GUIDE BOTTOM UP THINKING Unique businesses require unique solutions EMAIL SETUP INSTRUCTIONS CLIENT GUIDE INDEX How to connect a. Deciding on best method (POP or IMAP) Setting up email on devices Webmail a.

More information

Talk Internet User Guides Controlgate Administrative User Guide

Talk Internet User Guides Controlgate Administrative User Guide Talk Internet User Guides Controlgate Administrative User Guide Contents Contents (This Page) 2 Accessing the Controlgate Interface 3 Adding a new domain 4 Setup Website Hosting 5 Setup FTP Users 6 Setup

More information