User contributions

From Rackspace Email & Apps API
Jump to: navigation, search
Search for contributions
 
 
      
 
   

  • 01:22, 20 July 2021 (diff | hist) . . (+6). . Domain Webmail Settings (Rest API)(Update) (current)
  • 01:21, 20 July 2021 (diff | hist) . . (+6). . Domain Webmail Settings (Rest API)(Webmail Settings)
  • 08:51, 28 January 2020 (diff | hist) . . (-2,311). . Exchange Mailbox (Rest API)(v1 - Current) (current)
  • 14:24, 5 June 2019 (diff | hist) . . (+128). . Customer (Rest API)(Company contacts) (current)
  • 09:53, 21 October 2008 (diff | hist) . . (+18). . AddDomain()(current)
  • 09:53, 21 October 2008 (diff | hist) . . (+10). . AddDomain()
  • 13:55, 19 September 2008 (diff | hist) . . (-17). . Webmail
  • 13:54, 19 September 2008 (diff | hist) . . (+3). . Ruby(current)
  • 13:53, 19 September 2008 (diff | hist) . . (+696). . N Ruby(New page: Running the following command: <blockquote><code> wsdl2ruby.rb --wsdl https://admin.webmail.us/mailaccounts/mailaccounts.wsdl --type client </code></blockquote> This will generate the fo...)
  • 13:48, 19 September 2008 (diff | hist) . . (+12). . Main Page
  • 13:42, 19 September 2008 (diff | hist) . . (-132). . Beta
  • 17:37, 14 September 2008 (diff | hist) . . (-32). . MediaWiki:Sidebar
  • 17:37, 14 September 2008 (diff | hist) . . (+215). . N MediaWiki:Sidebar(New page: * navigation ** mainpage|mainpage-description ** Webmail|Webmail API ** currentevents-url|currentevents ** recentchanges-url|recentchanges ** randompage-url|randompage ** helppage|help * S...)
  • 16:58, 25 August 2008 (diff | hist) . . (+3,115). . N PHPAddSubaccounts(New page: Copy and paste this script into an empty file, then make it executable (*nix). It works with PHP that has compiled SOAP support.<br><br> <pre> <?php ####################################...) (current)
  • 16:58, 25 August 2008 (diff | hist) . . (+2,679). . N PHPProperSizeAllUsers(New page: <pre> <?php $domain = 'somedomain.com'; $ruser = 'someuser'; $rpass = 'somepass'; $newdomainsize = 100; //Default mailbox size in MB $proximitymultiplier = 1.12; ...) (current)
  • 16:58, 25 August 2008 (diff | hist) . . (+878). . N PHPDeleteUser(New page: <pre> <?php $client = new SoapClient('https://admin.webmail.us/mailaccounts/mailaccounts.wsdl', array('trace' => true, 'exceptions' => true)); $res = $client->__soapCall('CheckUserExists...) (current)
  • 16:58, 25 August 2008 (diff | hist) . . (+1,636). . N PHPModifyUser(New page: <pre> <?php $client = new SoapClient('https://admin.webmail.us/mailaccounts/mailaccounts.wsdl', array('trace' => true, 'exceptions' => true)); $res = $client->__soapCall('CheckUserExists...) (current)
  • 16:58, 25 August 2008 (diff | hist) . . (+1,630). . N PHPCreateUser(New page: <pre> <?php $client = new SoapClient('https://admin.webmail.us/mailaccounts/mailaccounts.wsdl', array('trace' => true, 'exceptions' => true)); $res = $client->__soapCall('CheckUserExists...) (current)
  • 16:58, 25 August 2008 (diff | hist) . . (+497). . N PHPGetDisplayPreferences(New page: <pre> <?php $client = new SoapClient('https://secure.webmail.us/mail4/soap/soap_server.php?wsdl'); $res = $client->__soapCall('GetDisplayPreferences', array('Reselle...) (current)
  • 16:58, 25 August 2008 (diff | hist) . . (+499). . N PHPGetUserIdentitiesExample(New page: <pre> <?php $client = new SoapClient('https://secure.webmail.us/mail4/soap/soap_server.php?wsdl'); $res = $client->__soapCall('GetUserIdentities', array('ResellerUse...) (current)
  • 16:58, 25 August 2008 (diff | hist) . . (+501). . N PHPGetUserContactsFullExample(New page: <pre> <?php $client = new SoapClient('https://secure.webmail.us/mail4/soap/soap_server.php?wsdl'); $res = $client->__soapCall('GetUserContactsFull', array('ResellerU...) (current)
  • 16:58, 25 August 2008 (diff | hist) . . (+2,985). . N PHPLoginAsExample(New page: This is a PHP script that can be used by administrators to login to the webmail client as a user, without using the user's passwword.. This is often useful when troubleshooting. Please n...) (current)
  • 16:58, 25 August 2008 (diff | hist) . . (+666). . N PHPCheckNumMessagesExample(New page: <pre> <?php require_once('nusoap.php'); $client = new soapclient('https://secure.webmail.us/soap/soap_server.php?wsdl', true); $err = $client->getError(); if ($err) { die("ERROR: $...) (current)
  • 16:58, 25 August 2008 (diff | hist) . . (+1,635). . N PHPCommandLineSoap(New page: This will work with pre-compiled SOAP and has been tested with PHP 5.2.1. Setting the $debug variable to true and running the commandline tool will display the request headers and message...) (current)
  • 16:57, 25 August 2008 (diff | hist) . . (+449). . N Perl GetDisplayPreferences(New page: <pre> #!/usr/bin/perl -w use strict; use SOAP::Lite; use Data::Dumper; my $service = "https://secure.webmail.us/mail4/soap/soap_server.php?wsdl"; my $resellerUsername = "someadmin"; my ...) (current)
  • 16:57, 25 August 2008 (diff | hist) . . (+619). . N Perl ModifyUser(New page: <nowiki>#!/usr/bin/perl -w</nowiki><br> <br> use strict;<br> use SOAP::Lite;<br> <br> my $service = "<nowiki>https://admin.webmail.us/mailaccounts/mailaccounts.wsdl</nowiki>";<br> <br> my ...) (current)
  • 16:57, 25 August 2008 (diff | hist) . . (+749). . N Perl SessionID(New page: == Getting a SessionID == <nowiki> #!/usr/bin/perl -w</nowiki><br> <br> use strict "vars";<br> use warnings;<br> use SOAP::Lite;<br> <br> <nowiki>my $service = "https://secure.webmail.us/s...) (current)
  • 16:57, 25 August 2008 (diff | hist) . . (+1,047). . N Perl Commandline(New page: To use this tool, you'll need a recent version of Perl (5.8.0 or better), and two Perl modules: SOAP::Lite Data::Dumper To install the modules from a *nix commandline, try the follow...) (current)
  • 16:57, 25 August 2008 (diff | hist) . . (+1,558). . N Perl GetCurrentUserMailboxSize(New page: == GetCurrentUserMailboxSize == This function has been updated to reflect changes to SOAP::Lite 0.69. For more information about using the SOM objects, please check here:<br> http://sear...) (current)
  • 16:56, 25 August 2008 (diff | hist) . . (+542). . N HTML(New page: == Login Redirect == This code shows a form asking for a username and password to a mailbox; clicking submit logs the person into the webmail client.<br> <br> <nowiki><form method=post act...)
  • 16:56, 25 August 2008 (diff | hist) . . (+1,657). . N ColdFusion(New page: This is a very simple ColdFusion script that adds a new user & sets the "uid" LDAP attribute for that user. Notice that the last variable passed to the function is passed as a reference i...) (current)
  • 16:56, 25 August 2008 (diff | hist) . . (+530). . N C(New page: public string LoginUserWebmail(string domain,string user)<br> {<br> string s="";<br> int r;<br> <br> try {<br> // This calls your SOAP method<br> r=obj.LoginUserWebmail(reseller_username,r...) (current)
  • 16:56, 25 August 2008 (diff | hist) . . (+1,448). . N ASP(New page: A Webmail.us customer recommended the following article as being helpful for System.Net.WebException errors: http://geekswithblogs.net/Denis/archive/2005/08/16/50365.aspx<br /> <br /> <%<...)
  • 16:56, 25 August 2008 (diff | hist) . . (+846). . N PHP(New page: Simple PHP script to call a SOAP function via the command line<br> Check for new & total Inbox messages<br> [[PHPLoginAsExample|Create...) (current)
  • 16:56, 25 August 2008 (diff | hist) . . (+615). . N Perl(New page: Please note that with the release of SOAP::Lite version 0.69, simple access to ASP-based SOAP API's was broken and somewhat more complex steps are needed. So far, only the [[Perl_GetCurre...) (current)
  • 16:55, 25 August 2008 (diff | hist) . . (+196). . N Beta(New page: The address book and related functions have moved out of beta as of May 2006. They are now a part of the Webmail API. Watch this space for new API functions as they become av...)
  • 16:55, 25 August 2008 (diff | hist) . . (+488). . N GetRetCodeDesc()(New page: This function accepts as a parameter an error code number generated by one of the API functions. It returns a string description with the meaning of the error code. ===Parameters=== One...) (current)
  • 16:54, 25 August 2008 (diff | hist) . . (+2,020). . N Subaccount SetLimitedAdminPermissions()(New page: This function will set the specific permissions granted to a particular limited administrator. "Limited" admins are limited to working with certain portions of the control panel. The com...) (current)
  • 16:54, 25 August 2008 (diff | hist) . . (+2,045). . N Subaccount GetLimitedAdminPermissions()(New page: This function will return the set of specific permissions granted to a particular limited administrator. "Limited" admins are limited to working with certain portions of the control panel...)
  • 16:54, 25 August 2008 (diff | hist) . . (+747). . N Subaccount GetAllocatedStorage()(New page: This function will return the current figures for allocated (assigned to a mailbox) storage and available storage for all domains on a subaccount. Integer results are in MB. ===Parameter...)
  • 16:54, 25 August 2008 (diff | hist) . . (+553). . N Subaccount GetNumMailboxes()(New page: This function will return the current number of mailboxes that have been created across all domains on a subaccount. ===Parameters=== Three strings of input, two integers of output: ...)
  • 16:54, 25 August 2008 (diff | hist) . . (+569). . N Subaccount GetNumDomains()(New page: This function will return the current number of domains associated with a subaccount. This number does not include domain aliases. ===Parameters=== Three strings of input, two integers ...)
  • 16:54, 25 August 2008 (diff | hist) . . (+601). . N Subaccount GetNumBcc()(New page: This function will return the current number of email addresses being archived with BCC Archiving associated with a subaccount. ===Parameters=== Three strings of input, two integers of o...)
  • 16:54, 25 August 2008 (diff | hist) . . (+725). . N GetEMSubscriberLimit()(New page: This function will return the current number of subscriber email addresses and the maximum number of subscriber email addresses associated with a subaccount for the Email Marketing / Outre...)
  • 16:54, 25 August 2008 (diff | hist) . . (+509). . N GetDomainNumBcc()(New page: This function will return the number of BCC archived mailboxes ===Parameters=== Three strings of input, two integers of output: "ResellerUsername" (the administrative user for the AP...)
  • 16:53, 25 August 2008 (diff | hist) . . (+139). . N AliasIndividual(New page: CheckAliasExists()<br> GetUserAliasesString()<br> AddAlias()<br> ModifyAlias()<br> DeleteAlias()<br> GetAlias()<br>) (current)
  • 16:53, 25 August 2008 (diff | hist) . . (+172). . N AliasDomain(New page: ModifyDomainAliases()<br> SetNobodyAlias()<br> RemoveNobodyAlias()<br> GetUserAliasesBulk()<br> AddUserAliasesBulk()<br> DeleteUserAliasesBulk()<br>)
  • 16:13, 25 August 2008 (diff | hist) . . (+473). . N GetCurrentUserMailboxSize()(New page: This function will report the amount of space used in a given mailbox. This information is updated nightly. Size is given in megabytes. ===Input Parameters=== Four strings, one result i...) (current)
  • 16:13, 25 August 2008 (diff | hist) . . (+484). . N GetUserStatus()(New page: This function will report whether a user is valid on the system. ===Input Parameters=== Four strings: Administrative username, Administrative password, Domain name, User n...) (current)
  • 16:13, 25 August 2008 (diff | hist) . . (+976). . N UsersIndividual(New page: CheckUserExists()<br> AddUser()<br> DeleteUser()<br> ModifyUser()<br> GetUserMailForward()<br> SetUserMailForward()<br> RemoveUserMailForward()<br> [[GetUserMai...) (current)
  • 16:09, 25 August 2008 (diff | hist) . . (-2,018). . GetDomainUsersStringAlpha()(current)
  • 16:08, 25 August 2008 (diff | hist) . . (+12,707). . N GetDomainUsersBlackListStatusString()(New page: This function will return a list of domain users and whether or not they have a user-level blacklist in place. ===Input Parameters=== Three strings, and one result string: Administrat...)
  • 16:08, 25 August 2008 (diff | hist) . . (+12,707). . N GetDomainUsersStringAlpha()(New page: This function will return a list of domain users and whether or not they have a user-level blacklist in place. ===Input Parameters=== Three strings, and one result string: Administrat...)
  • 16:08, 25 August 2008 (diff | hist) . . (+1,065). . N UsersDomain(New page: ModifyDomainMaxMailboxSize()<br> ModifyDomainMaxNumUsers()<br> GetDomainNumUsers()<br> GetDomainNumUsersActive()<br> GetAllDomainsUserCount()<br> GetDomainUsers()<b...)
  • 16:07, 25 August 2008 (diff | hist) . . (+329). . N Subaccount DeleteDomain()(New page: This function will delete a domain. ===Parameters=== Four strings: Administrative username, Administrative password, Domain name to be deleted ===Return Values=== If success...) (current)
  • 16:07, 25 August 2008 (diff | hist) . . (+864). . N AddMailAllotStorage()(New page: This function will add or remove allocatable/extra storage for a domain. Passing a negative value to reduce the allocatable storage. After calling this function, extra storage may be ass...)
  • 16:07, 25 August 2008 (diff | hist) . . (+12,990). . N GetDomainAllUserStatsActiveString()(New page: This function will return last login and mailbox sizes for either active users or inactive (disabled) users on a domain. ===Input Parameters=== Three strings, one integer, and one result ...)
  • 16:07, 25 August 2008 (diff | hist) . . (+568). . N GetAllDomainsSettings()(New page: This function will report the domain settings for every domain associated with a reseller account. Settings include: domain aliases, base max mailbox size, and maximum mailboxes. ===Para...)
  • 16:07, 25 August 2008 (diff | hist) . . (+516). . N GetAllDomainsStats()(New page: This function will report the number of users and the disk space used for each domain associated with a reseller account. ===Parameters=== Two strings, one result array: Administrati...)
  • 16:07, 25 August 2008 (diff | hist) . . (+440). . N GetAllDomains()(New page: This function will report the list of domains associated with a reseller account. ===Parameters=== Two strings, one result array: Administrative username, Administrative password...) (current)
  • 16:07, 25 August 2008 (diff | hist) . . (+494). . N GetDomainNumUsersActive()(New page: This function will return the current number of either active or inactive mailboxes on the domain. ===Input Parameters=== Three strings, an integer, and a result integer: Administrat...)
  • 16:07, 25 August 2008 (diff | hist) . . (+72). . N GetDomainNumUsers()(New page: This function will return the current number of mailboxes on the domain.) (current)
  • 16:07, 25 August 2008 (diff | hist) . . (+982). . N AddDomain()(New page: This function will add a new sub-account and place a new domain inside that subaccount. If you need to add a new domain to an existing account, use Subaccount_AddDomain(). ===Paramet...)
  • 16:05, 25 August 2008 (diff | hist) . . (+1,464). . N Domain administration(New page: AddDomain()<br> DeleteDomain()<br> ModifyDomain()<br> ModifyDomainAliases()<br> ModifyDomainMaxMailboxSize()<br> ModifyDomainMaxNumUsers()<br> [[GetDomainSettings()...)
  • 16:05, 25 August 2008 (diff | hist) . . (+910). . N GetDomainSettings()(New page: This function will report domain level settings including: domain aliases, base max mailbox size, max mailboxes, and the first username and password on the subaccount holding the domain. ...)
  • 16:05, 25 August 2008 (diff | hist) . . (+801). . N ModifyDomainMaxNumUsers()(New page: This function will change the maximum number of mailboxes that can be created for a domain. Please note that mailbox and domain aliases do not count towards the total number of mailboxes....)
  • 16:05, 25 August 2008 (diff | hist) . . (+570). . N ModifyDomainMaxMailboxSize()(New page: This function will make change the base mailbox maximum size for a domain. For instance, you might change a domain's mailboxes from a base size of 25MB (no more than 25MB of email stored ...) (current)
  • 16:05, 25 August 2008 (diff | hist) . . (+669). . N ModifyDomainAliases()(New page: This function will reset the domain alias list. A domain alias makes all mailboxes appear to exist on any domain set as an alias to the primary domain. Mail sent to the mailbox on a doma...) (current)
  • 16:05, 25 August 2008 (diff | hist) . . (+800). . N ModifyDomain()(New page: This function will reset several values associated with a domain at one time. ===Parameters=== Four strings, three integers, 3 more strings Administrative username (string), Admi...) (current)
  • 16:05, 25 August 2008 (diff | hist) . . (+353). . N DeleteDomain()(New page: This function will delete a domain. ===Parameters=== Four strings: Administrative username, Administrative password, Domain name to be deleted, Placeholder string ===Ret...) (current)
  • 16:03, 25 August 2008 (diff | hist) . . (+300). . N Domain parameters(New page: ==Functions== SearchDomains()<br> Subaccount_AddDomain()<br> Subaccount_MoveDomain()<br> DeleteDomain()<br> ModifyDomain()<br> ModifyDomainAliases()<br> [[ModifyDom...) (current)
  • 16:03, 25 August 2008 (diff | hist) . . (+1,236). . N Domain spam(New page: There are three aspects to spam management: the spam identification threshold, what action to take with messages that meet that threshold, and which domains and email addresses should be e...)
  • 16:02, 25 August 2008 (diff | hist) . . (+566). . N GetAllDomainsMXRecords()(New page: This function will report the current MX record settings for all domains associated with the username and password. ===Parameters=== Two strings, one array of strings Administrative ...)
  • 16:02, 25 August 2008 (diff | hist) . . (+723). . N GetAllDomainsUserCount()(New page: This function will count all of the mailboxes across all domains associated with the username and password provided. Please note that it counts provisioned mailboxes, not allocated mailbo...)
  • 16:02, 25 August 2008 (diff | hist) . . (+487). . N Subaccount MoveDomain()(New page: This function will move a domain from one subaccount to another. Please note that administrative rights are associated with subaccounts, not individual domains. ===Parameters=== Four st...) (current)
  • 16:02, 25 August 2008 (diff | hist) . . (+851). . N Subaccount AddDomain()(New page: This function will add a domain to a subaccount and configure the Webmail.us system to accept email for that domain. Please note that this is wholly separate from the DNS process of confi...)
  • 16:02, 25 August 2008 (diff | hist) . . (+362). . N Subaccount DeleteAdmin()(New page: This function will delete an administrator. ===Parameters=== Four strings: Administrative username, Administrative password, Subaccount number, Admin username to be delet...) (current)
  • 16:02, 25 August 2008 (diff | hist) . . (+672). . N Subaccount ChangeAdminType()(New page: This function will change the type of a given administrator. "Super" admins may do all administrative tasks including the adding of new admins. "Standard" admins may do all administrativ...) (current)
  • 16:02, 25 August 2008 (diff | hist) . . (+394). . N Subaccount ChangeAdminPassword()(New page: This function will change the password of an administrator. ===Parameters=== Five strings: Administrative username, Administrative password, Subaccount number, Admin user...) (current)
  • 16:02, 25 August 2008 (diff | hist) . . (+719). . N Subaccount AddAdmin()(New page: This function will add an administrator of a given type to a sub-account. "Super" admins may do all administrative tasks including the adding of new admins. "Standard" admins may do all ...) (current)
  • 16:02, 25 August 2008 (diff | hist) . . (+763). . N Subaccount GetAdminType()(New page: This function will find the admin and return the type. "Super" admins may do all administrative tasks including the adding of new admins. "Standard" admins may do all administrative task...)
  • 16:02, 25 August 2008 (diff | hist) . . (+525). . N Subaccount GetAdmins()(New page: This function will return the list of admin usernames associated with the subaccount number provided. ===Parameters=== Four strings: Administrative username, Administrative passw...) (current)
  • 16:02, 25 August 2008 (diff | hist) . . (+597). . N Subaccount GetDomains()(New page: This function will return the list of all domains associated with the subaccount number provided. ===Parameters=== Four strings: Administrative username, Administrative password,...) (current)
  • 16:02, 25 August 2008 (diff | hist) . . (+398). . N ModifySubaccount()(New page: This function will allow the name associated with a sub-account number to be changed. ===Parameters=== Four strings: Administrative username, Administrative password, Subacco...) (current)
  • 16:02, 25 August 2008 (diff | hist) . . (+479). . N DeleteSubaccount()(New page: This function will delete a sub-account that matches the provided account number. Note that all domains and services on that sub-account must be deleted or this function will return an er...) (current)
  • 16:02, 25 August 2008 (diff | hist) . . (+515). . N AddSubaccount()(New page: This function will add a new sub-account to an existing reseller account. ===Parameters=== Four strings: Administrative username, (must belong to a reseller account) Administrati...) (current)
  • 16:02, 25 August 2008 (diff | hist) . . (+1,014). . N SearchDomains()(New page: This function will search the list of domains associated with the provided admin user for all instances where the domain name matches the partial string supplied as the search argument. N...) (current)
  • 16:02, 25 August 2008 (diff | hist) . . (+844). . N SearchSubaccounts()(New page: This function will search the list of sub-accounts associated with the provided admin user for all instances where the sub-account name matches the partial string supplied as the search ar...) (current)
  • 16:02, 25 August 2008 (diff | hist) . . (+664). . N GetSubaccounts()(New page: This function will return the number of messages in the Inbox folder of a mailbox and will return the number of messages in the Inbox folder flagged as new based on the IMAP flag. ===Para...) (current)
  • 15:58, 25 August 2008 (diff | hist) . . (+4,594). . N AllReseller(New page: New! Q1 of 2008:<br /> GetDomainNumBcc()<br /> GetEMSubscriberLimit()<br /> Subaccount_GetNumBcc()<br /> Subaccount_GetNumDomains()<br /> Subaccount_GetNumMailboxes()<b...)
  • 15:58, 25 August 2008 (diff | hist) . . (+110). . N Aliases(New page: All aliases on a domain or bulk alias functions<br> Individual aliases<br>) (current)
  • 15:58, 25 August 2008 (diff | hist) . . (+106). . N Users(New page: All users in a domain or bulk user operations<br> Individual users<br>) (current)
  • 15:58, 25 August 2008 (diff | hist) . . (+298). . N Domains(New page: These functions are designed for Webmail.us resellers, but other customers may find these functions useful, as well. == Categories == Domain-level spam settings<br> [[Doma...)
  • 15:58, 25 August 2008 (diff | hist) . . (+866). . N Companies(New page: Resellers of [http://www.webmail.us Webmail.us] email hosting services can add sub-accounts to their main reseller account. Each sub-account usually represents a company that purchases em...)
  • 15:57, 25 August 2008 (diff | hist) . . (+610). . N Reseller(New page: == SOAP Access == Functions for the Reseller API should be accessed using these paramenters: * WSDL URI:  https://admin.webmail.us/excedentsoap/excedentsoap.wsdl Please note t...)
  • 15:57, 25 August 2008 (diff | hist) . . (+1,486). . N BusinessDomain(New page: __TOC__ ping()<br> ===Find out about a domain=== GetDomainStats()<br> GetDomainUsers()<br> GetDomainUsersString()<br> GetDomainUsersSpamStatusString()<br> [[GetDomainUs...)
  • 15:57, 25 August 2008 (diff | hist) . . (+1,320). . N BusinessUser(New page: __TOC__ ping() to test connection to the SOAP server<br> ===Find out about users=== GetDomainUsers()<br> GetDomainUsersString()<br> GetDomainUsersSpamStatusString()<br> [[G...)
  • 15:54, 25 August 2008 (diff | hist) . . (+976). . N GetDomainAllUserStatsAlpha()(New page: This function will return last login and mailbox sizes for either active users or inactive (disabled) users on a domain, where the usernames match the search element. If only a single let...)
  • 15:53, 25 August 2008 (diff | hist) . . (+953). . N GetDomainAllUserCurrentSizeAlpha()(New page: This function will report the amount of space used by each mailbox in a domain where the mailbox matches the search element. Passing a single letter or number as the search element will r...)
  • 15:53, 25 August 2008 (diff | hist) . . (+1,166). . N GetDomainAllUserLastLoginAlpha()(New page: This function will report the date of the last login for all mailboxes on a domain that match the string provided. Note that if a single letter is passed as the search element, then the f...)
  • 15:53, 25 August 2008 (diff | hist) . . (+723). . N SetDomainUsersMailboxMaxSize()(New page: This function will set the default maximum mailbox size for mailboxes on the domain, total extra storage associated with the domain, unallocated extra storage for the domain, as well as a ...) (current)
  • 15:53, 25 August 2008 (diff | hist) . . (+1,011). . N GetDomainUsersMailboxMaxSize()(New page: This function will report the default maximum mailbox size for mailboxes on the domain, total extra storage associated with the domain, unallocated extra storage for the domain, as well as...) (current)
  • 15:53, 25 August 2008 (diff | hist) . . (+487). . N GetMailAllotStorage()(New page: This function will report the total extra storage associated with a domain. ===Parameters=== Three strings, one result integer: Administrative username, Administrative password, ...) (current)
  • 15:53, 25 August 2008 (diff | hist) . . (+570). . N GetUserSpamBlackList()(New page: This function will report the user's blacklist. Please note that the domain blacklist + the user's blacklist will both be applied to incoming email messages. ===Parameters=== Four strin...) (current)
  • 15:53, 25 August 2008 (diff | hist) . . (+570). . N SetUserSpamBlackList()(New page: This function will reset the user's blacklist to the list provided. Please note that the domain blacklist + the user's blacklist will both be applied to incoming email messages. ===Param...) (current)
  • 15:53, 25 August 2008 (diff | hist) . . (+449). . N GetDomainSpamBlackList()(New page: This function will report the domain's blacklist. ===Parameters=== Three strings, one result string: Administrative username, Administrative password, Domain name, Black...) (current)
  • 15:53, 25 August 2008 (diff | hist) . . (+446). . N SetDomainSpamBlackList()(New page: This function will reset the domain blacklist to the list provided. ===Parameters=== Four strings: Administrative username, Administrative password, Domain name, Black li...)
  • 15:53, 25 August 2008 (diff | hist) . . (+561). . N GetUserSpamSafeList()(New page: This function will report the user's safelist. Please note that for individual users the domain safelist + the user's safelist will be applied to incoming email messages. ===Parameters==...) (current)
  • 15:53, 25 August 2008 (diff | hist) . . (+555). . N SetUserSpamSafeList()(New page: This function will reset the user safelist to the list provided. Please note that for individual users the domain safelist + the user's safelist will be applied to incoming email messages...) (current)
  • 15:53, 25 August 2008 (diff | hist) . . (+501). . N GetDomainSpamSafeList()(New page: This function will report the domain safelist for the domain. ===Parameters=== Three strings, one result string: Administrative username, Administrative password, Domain name...) (current)
  • 15:53, 25 August 2008 (diff | hist) . . (+418). . N SetDomainSpamSafeList()(New page: This function will reset the domain safelist to the list provided. ===Parameters=== Four strings Administrative username, Administrative password, Domain name, Safe list ...) (current)
  • 15:53, 25 August 2008 (diff | hist) . . (+757). . N GetUserSpamCleaner()(New page: This function will report the automatic action to be taken with messages that reside in the spam IMAP/webmail folder. Please remember that user-level settings for filter level and handlin...) (current)
  • 15:53, 25 August 2008 (diff | hist) . . (+746). . N SetUserSpamCleaner()(New page: This function will set the automatic action to be taken with messages that reside in the spam IMAP/webmail folder. Please remember that user-level settings for filter level and handling a...) (current)
  • 15:53, 25 August 2008 (diff | hist) . . (+674). . N GetDomainSpamCleaner()(New page: This function will report the automatic delete action to be taken with messages that reside in the spam IMAP/webmail folder. ===Parameters=== Three strings, two integers Administrati...)
  • 15:53, 25 August 2008 (diff | hist) . . (+607). . N SetDomainSpamCleaner()(New page: This function will set the automatic action to be taken with messages that reside in the spam IMAP/webmail folder. ===Parameters=== Three strings, two integers Administrative usernam...) (current)
  • 15:53, 25 August 2008 (diff | hist) . . (+1,553). . N GetUserSpam()(New page: This function will set the threshold of sensitivity for determining whether a message should be considered spam and also sets the action to be taken for messages that meet the threshold. ...) (current)
  • 15:52, 25 August 2008 (diff | hist) . . (+385). . N DeleteUserSpam()(New page: This function will remove any user-level spam threshold and action settings. ===Parameters=== Four strings Administrative username (string), Administrative password (string), ...) (current)
  • 15:52, 25 August 2008 (diff | hist) . . (+1,652). . N AddUserSpam()(New page: This function will set the threshold of sensitivity for determining whether a message should be considered spam and also sets the action to be taken for messages that meet the threshold. ...) (current)
  • 15:52, 25 August 2008 (diff | hist) . . (+1,673). . N GetDomainSpam()(New page: This function will report the threshold of sensitivity for determining whether a message should be considered spam and also reports the action to be taken for messages that meet the thresh...) (current)
  • 15:52, 25 August 2008 (diff | hist) . . (+351). . N DeleteDomainSpam()(New page: This function will disable spam filtering for a domain. ===Parameters=== Three strings Administrative username (string), Administrative password (string), Domain name ===Retur...)
  • 15:52, 25 August 2008 (diff | hist) . . (+1,498). . Nm AddDomainSpam()(New page: This function will set the threshold of sensitivity for determining whether a message should be considered spam and also sets the action to be taken for messages that meet the threshold. ...) (current)
  • 15:52, 25 August 2008 (diff | hist) . . (+640). . N ModifyUserWithLdapAttributesString()(New page: This function will modify a mailbox and set it's mailbox LDAP attributes. ===Input Parameters=== Five strings, one integer, and one more string: Administrative username, Administr...)
  • 15:52, 25 August 2008 (diff | hist) . . (+587). . N ModifyUserWithLdapAttributes()(New page: This function will modify a mailbox and set it's mailbox LDAP attributes. ===Input Parameters=== Six strings, one integer, and one array of strings: Administrative username, Admin...) (current)
  • 15:52, 25 August 2008 (diff | hist) . . (+669). . N AddUserWithLdapAttributesString()(New page: This function will add a new mailbox and set it's mailbox LDAP attributes. ===Input Parameters=== Five strings, one integer, and one more string: Administrative username, Administ...)
  • 15:52, 25 August 2008 (diff | hist) . . (+2,207). . N AddUserWithLdapAttributes()(New page: This function will add a new mailbox and set it's mailbox LDAP attributes. Please note that a number of attributes cannot be edited from the control panel without contacting Webmail.us an...)
  • 15:52, 25 August 2008 (diff | hist) . . (+498). . N DeleteUserAliasesBulk()(New page: This function will remove several aliases at one time. There is an upper limit of around 100 aliases that may be removed in a single function call. ===Input Parameters=== Three strings, ...)
  • 15:52, 25 August 2008 (diff | hist) . . (+610). . N AddUserAliasesBulk()(New page: This function will add several aliases at one time. There is an upper limit of around 100 aliases that may be added in a single function call. ===Input Parameters=== Three strings, one a...) (current)
  • 15:52, 25 August 2008 (diff | hist) . . (+480). . N GetUserAliasesBulk()(New page: This function will check the active status of all mailboxes on a domain at one time. 1=active, 0 = not active. ===Input Parameters=== Three strings, one results array of strings: Adm...) (current)
  • 15:52, 25 August 2008 (diff | hist) . . (+560). . N SetUsersActiveBulk()(New page: This function will set the active/inactive status of several mailboxes at one time. There is an upper limit of around 100 mailboxes that may be set in a single function call. ===Input Pa...) (current)
  • 15:52, 25 August 2008 (diff | hist) . . (+508). . N DeleteUsersBulk()(New page: This function will delete several mailboxes at one time. There is an upper limit of around 100 mailboxes that may be removed in a single function call. ===Input Parameters=== Three strin...) (current)
  • 15:51, 25 August 2008 (diff | hist) . . (+664). . N ModifyUsersBulk()(New page: This function will modify several mailboxes at one time. There is an upper limit of around 100 mailboxes that may be modified in a single function call. ===Input Parameters=== Three stri...)
  • 15:51, 25 August 2008 (diff | hist) . . (+671). . N AddUsersBulk()(New page: This function will add several mailboxes at one time. There is an upper limit of around 100 mailboxes that may be added in a single function call. ===Input Parameters=== Three strings, o...)
  • 15:51, 25 August 2008 (diff | hist) . . (+435). . N SendMailDomainUsersAll()(New page: This function will send an email to all users on a domain. ===Input Parameters=== Seven strings: Administrative username, Administrative password, Domain name, Name of sen...)
  • 15:51, 25 August 2008 (diff | hist) . . (+1,067). . N GetDomainNotify()(New page: This function will report the notification percentage and message to be used when a mailbox on a domain starts to get full. It also reports any configured email address that will also rec...)
  • 15:51, 25 August 2008 (diff | hist) . . (+1,016). . N SetDomainNotify()(New page: This function will set the notification percentage and message to use when a mailbox on a domain starts to get full. It can also configure another email address to receive a copy of the n...) (current)
  • 15:51, 25 August 2008 (diff | hist) . . (+499). . N GetAlias()(New page: This function will report the list of email addresses that will receive email directed to a specific alias. ===Input Parameters=== Four strings, one result string: Administrative user...) (current)
  • 15:49, 25 August 2008 (diff | hist) . . (+347). . N DeleteAlias()(New page: This function will delete an alias on a domain. ===Input Parameters=== Four strings: Administrative username, Administrative password, Domain name, Alias name ===Return Va...) (current)
  • 15:49, 25 August 2008 (diff | hist) . . (+712). . N ModifyAlias()(New page: This function will update an alias on the domain. Keep in mind that aliases are different from mailboxes in that an alias has no anti-spam features. Please note that the list provided he...) (current)
  • 15:49, 25 August 2008 (diff | hist) . . (+522). . N AddAlias()(New page: This function will create a new alias on the domain. Keep in mind that aliases are different from mailboxes in that an alias has no anti-spam features. ===Input Parameters=== Five string...) (current)
  • 15:49, 25 August 2008 (diff | hist) . . (+447). . N GetUserAliasesString()(New page: This function will report the aliases that exist for a domain. ===Input Parameters=== Three strings, one output string: Administrative username, Administrative password, Domai...) (current)
  • 15:48, 25 August 2008 (diff | hist) . . (+457). . N CheckUserAvailable()(New page: This function will report whether a name exists as either an alias or as a mailbox on the domain. ===Input Parameters=== Four strings: Administrative username, Administrative pass...) (current)
  • 15:48, 25 August 2008 (diff | hist) . . (+486). . N CheckAliasExists()(New page: This function will report if an alias exists that exactly matches the string passed by the function. ===Input Parameters=== Four strings: Administrative username, Administrative p...) (current)
  • 15:48, 25 August 2008 (diff | hist) . . (+563). . N GetDomainAllUsersForward()(New page: This function will return a list of all mailboxes for a domain and any addresses configured to receive forwarded email for mailboxes on the domain. ===Input Parameters=== Three strings an...) (current)
  • 15:48, 25 August 2008 (diff | hist) . . (+633). . N GetDomainAllUserStatsActive()(New page: This function will return last login and mailbox sizes for either active users or inactive (disabled) users on a domain. ===Input Parameters=== Three strings, one integer, and one result ...) (current)
  • 15:48, 25 August 2008 (diff | hist) . . (+664). . N GetDomainAllUserCurrentSizeActive()(New page: This function will report the amount of space used by each mailbox in a domain that is either active or inactive as selected by the API user. This information is updated nightly. Size is...)
  • 15:48, 25 August 2008 (diff | hist) . . (+840). . N GetDomainAllUserLastLoginActive()(New page: This function will report the date of the last login for all mailboxes on a domain that are either active or inactive (whichever is selected by the API user). POP3/IMAP/Webmail logins are...)
  • 15:48, 25 August 2008 (diff | hist) . . (+625). . N GetDomainAllUserStats()(New page: This function will return a list of domain users, their last login date, and the size of their mailbox (calculated each night). Please note that using this function on domains with large ...) (current)
  • 15:48, 25 August 2008 (diff | hist) . . (+538). . N GetDomainAllUserCurrentSize()(New page: This function will report the amount of space used by each mailbox in a domain. This information is updated nightly. Size is given in bytes (not KB nor MB) ===Input Parameters=== Three ...)
  • 15:48, 25 August 2008 (diff | hist) . . (+701). . N GetDomainAllUserLastLogin()(New page: This function will report the date of the last login for all mailboxes on a domain. POP3/IMAP/Webmail logins are all considered a login (not SMTP Auth). Last login information is recalcu...) (current)
  • 15:48, 25 August 2008 (diff | hist) . . (+441). . N GetUserActiveStatus()(New page: This function will report the active/enabled or inactive/disabled status of a mailbox. ===Input Parameters=== Four strings: Administrative username, Administrative password, D...) (current)
  • 15:48, 25 August 2008 (diff | hist) . . (+667). . N GetUserLastLogin()(New page: This function will report the date of the last login for a particular customer. POP3/IMAP/Webmail logins are all considered a login (not SMTP Auth). Last login information is recalculate...) (current)
  • 15:48, 25 August 2008 (diff | hist) . . (+533). . N GetUserMailboxMaxSize()(New page: This function will report the max size of a particular mailbox (taking into account any extra allocated storage on the mailbox). ===Input Parameters=== Four strings, one result integer: ...) (current)
  • 15:48, 25 August 2008 (diff | hist) . . (+530). . N SetUserMailboxMaxSize()(New page: This function will set how much of a domain's available allocatable storage should be used with a particular mailbox. ===Input Parameters=== Four strings, one integer: Administrative ...) (current)
  • 15:48, 25 August 2008 (diff | hist) . . (+512). . N SetUserMailVacation()(New page: This function will set the string to be the user's vacation message and will set whether or not the vacation message should be active. ===Input Parameters=== Five strings, one integer: ...) (current)
  • 15:48, 25 August 2008 (diff | hist) . . (+558). . N GetUserMailVacation()(New page: This function will return the string currently configured to be the user's vacation message and will report whether or not the vacation message is active. ===Input Parameters=== Four stri...) (current)
  • 15:48, 25 August 2008 (diff | hist) . . (+366). . N RemoveUserMailForward()(New page: This function will turn off mail forwarding for a particular user. ===Input Parameters=== Four strings: Administrative username, Administrative password, Domain name, User...) (current)
  • 15:47, 25 August 2008 (diff | hist) . . (+669). . N SetUserMailForward()(New page: This function will set a list of addresses to forward mail orginally sent to a particular email address and can set whether to save a copy of the email in the original recipient's mailbox....) (current)
  • 15:47, 25 August 2008 (diff | hist) . . (+633). . N GetUserMailForward()(New page: This function will return a list of forwarding addresses for a user and report whether the user ID is configured to keep a copy of each message it is forwarding. ===Input Parameters=== Fo...) (current)
  • 15:47, 25 August 2008 (diff | hist) . . (+950). . N ModifyUser()(New page: This function will modify user data and is most often used for changing passwords. ===Input Parameters=== Five strings, an integer, and 10 more strings: Administrative username, ...) (current)
  • 15:47, 25 August 2008 (diff | hist) . . (+350). . N DeleteUser()(New page: This function will remove a mailbox from a domain. ===Input Parameters=== Four strings: Administrative username, Administrative password, Domain name, User name ===Return...) (current)
  • 15:46, 25 August 2008 (diff | hist) . . (+452). . N CheckUserExists()(New page: This function will check to see if a mailbox or alias name exists on a particular domain. ===Input Parameters=== Four strings: Administrative username, Administrative password, ...) (current)
  • 15:46, 25 August 2008 (diff | hist) . . (+535). . N GetDomainUsersSafeListStatusString()(New page: This function will return a list of domain users and whether or not they have a user-level safelist in place. ===Input Parameters=== Three strings, and one result string: Administrati...)
  • 15:45, 25 August 2008 (diff | hist) . . (+579). . N GetDomainUsersSpamStatusString()(New page: This function will return a list of domain users and whether they have user-level spam settings in place that are superceding the domain-level spam settings. ===Input Parameters=== Three ...)
  • 15:45, 25 August 2008 (diff | hist) . . (+479). . N GetDomainUsersString()(New page: This function will return a list of domain users and their active/inactive status. ===Input Parameters=== Three strings, and one return string: Administrative username, Administra...)
  • 15:45, 25 August 2008 (diff | hist) . . (+491). . N GetDomainUsers()(New page: This function will return a list of domain users and their active/inactive status. ===Input Parameters=== Three strings, and one result array of strings: Administrative username, ...) (current)
  • 15:45, 25 August 2008 (diff | hist) . . (+367). . N RemoveNobodyAlias()(New page: This function will remove a catch-all account if one is configured for a domain. ===Input Parameters=== Three strings: Administrative username, Administrative password, Domai...) (current)
  • 15:45, 25 August 2008 (diff | hist) . . (+700). . N SetNobodyAlias()(New page: This function will add a "catch-all" account. Catch-all accounts are not recommended! Many spammers use "directory harvest attacks" that will try to send email to random list of possible...) (current)
  • 15:45, 25 August 2008 (diff | hist) . . (+566). . N GetDomainStats()(New page: This function will return the current number of mailboxes on the domain and the total disk space used by all of those mailboxes (in MB). Space used is calculated every night. ===Input Pa...) (current)
  • 14:04, 22 August 2008 (diff | hist) . . (+586). . N GetUserSpamGreylist()(New page: This function will check greylisting status for a user. Greylisting forces new sender/server combinations to resend their messages a 2nd time in accordance with SMTP RFC specifications an...)
  • 14:04, 22 August 2008 (diff | hist) . . (+576). . N SetUserSpamGreylist()(New page: This function will turn on or off greylisting for a user. Greylisting forces new sender/server combinations to resend their messages a 2nd time in accordance with SMTP RFC specifications ...)
  • 14:03, 22 August 2008 (diff | hist) . . (+576). . N GetDomainSpamGreylist()(New page: This function will check greylisting status for a domain. Greylisting forces new sender/server combinations to resend their messages a 2nd time in accordance with SMTP RFC specifications ...)
  • 14:03, 22 August 2008 (diff | hist) . . (+566). . N SetDomainSpamGreylist()(New page: This function will turn on or off greylisting for a domain. Greylisting forces new sender/server combinations to resend their messages a 2nd time in accordance with SMTP RFC specification...)
  • 14:03, 22 August 2008 (diff | hist) . . (+579). . N RemoveUserSpamIPBlackList()(New page: This function will remove entries to the existing IP address blacklist for a given user. Blacklist entries can be specific hosts (like "10.167.10.21") or simple ranges through the use of ...)
  • 14:03, 22 August 2008 (diff | hist) . . (+543). . N RemoveUserSpamBlackList()(New page: This function will remove matching entries to the existing blacklist for a given user. Blacklist entries can be either domain names ("example.com") or email addresses ("info@example.com")...)
  • 14:03, 22 August 2008 (diff | hist) . . (+576). . N RemoveUserSpamIPSafeList()(New page: This function will remove entries to the existing IP address safelist for a given user. Safelist entries can be specific hosts (like "10.167.10.21") or simple ranges through the use of th...)
  • 14:03, 22 August 2008 (diff | hist) . . (+540). . N RemoveUserSpamSafeList()(New page: This function will remove matching entries to the existing safelist for a given user. Safelist entries can be either domain names ("example.com") or email addresses ("info@example.com"). ...)
  • 14:03, 22 August 2008 (diff | hist) . . (+568). . N RemoveDomainSpamIPBlackList()(New page: This function will remove entries to the existing IP address blacklist for a given domain. Blacklist entries can be specific hosts (like "10.167.10.21") or simple ranges through the use o...)
  • 14:03, 22 August 2008 (diff | hist) . . (+532). . N RemoveDomainSpamBlackList()(New page: This function will remove matching entries to the existing blacklist for a given domain. Blacklist entries can be either domain names ("example.com") or email addresses ("info@example.com...)
  • 14:03, 22 August 2008 (diff | hist) . . (+565). . N RemoveDomainSpamIPSafeList()(New page: This function will remove entries to the existing IP address safelist for a given domain. Safelist entries can be specific hosts (like "10.167.10.21") or simple ranges through the use of ...)
  • 14:03, 22 August 2008 (diff | hist) . . (+529). . N RemoveDomainSpamSafeList()(New page: This function will remove matching entries to the existing safelist for a given domain. Safelist entries can be either domain names ("example.com") or email addresses ("info@example.com")...)
  • 14:02, 22 August 2008 (diff | hist) . . (+588). . N AddUserSpamIPBlackList()(New page: This function will add one or more entries to the existing IP address blacklist for a given user. Blacklist entries can be specific hosts (like "10.167.10.21") or simple ranges through th...)
  • 14:02, 22 August 2008 (diff | hist) . . (+543). . N AddUserSpamBlackList()(New page: This function will add one or more entries to the existing blacklist for a given user. Blacklist entries can be either domain names ("example.com") or email addresses ("info@example.com")...)
  • 14:02, 22 August 2008 (diff | hist) . . (+585). . N AddUserSpamIPSafeList()(New page: This function will add one or more entries to the existing IP address safelist for a given user. Safelist entries can be specific hosts (like "10.167.10.21") or simple ranges through the ...)
  • 14:02, 22 August 2008 (diff | hist) . . (+543). . N AddUserSpamSafeList()(New page: This function will add one or more entries to the existing safelist for a given mailbox. Safelist entries can be either domain names ("example.com") or email addresses ("info@example.com"...) (current)
  • 14:02, 22 August 2008 (diff | hist) . . (+577). . N AddDomainSpamIPBlackList()(New page: This function will add one or more entries to the existing IP address blacklist for a given domain. Blacklist entries can be specific hosts (like "10.167.10.21") or simple ranges through ...)
  • 14:01, 22 August 2008 (diff | hist) . . (+536). . N AddDomainSpamBlackList()(New page: This function will add one or more entries to the existing blacklistlist for a given domain. Blacklist entries can be either domain names ("example.com") or email addresses ("info@example...)
  • 14:01, 22 August 2008 (diff | hist) . . (+574). . N AddDomainSpamIPSafeList()(New page: This function will add one or more entries to the existing IP address safelist for a given domain. Safelist entries can be specific hosts (like "10.167.10.21") or simple ranges through th...)
  • 14:01, 22 August 2008 (diff | hist) . . (+529). . N AddDomainSpamSafeList()(New page: This function will add one or more entries to the existing safelist for a given domain. Safelist entries can be either domain names ("example.com") or email addresses ("info@example.com")...) (current)
  • 14:01, 22 August 2008 (diff | hist) . . (+832). . N GetUsersWithFilterStr()(New page: This function will search LDAP-style directory attributes of users on a domain and will return a list of users that match. A list of possible attributes can be found at [[AddUserWithLdapA...) (current)
  • 14:01, 22 August 2008 (diff | hist) . . (+607). . N GetUserAttributes()(New page: This function will return the LDAP-style directory attributes associated with a specified user. A list of possible attributes can be found at AddUserWithLdapAttributes(). ===Paramete...) (current)
  • 13:59, 22 August 2008 (diff | hist) . . (+2,976). . N BusinessAll(New page: New! February 2007: GetUserAttributes()<br> GetUsersWithFilterStr()<br> AddDomainSpamSafeList()<br> AddDomainSpamIPSafeList()<br> AddDomainSpamBlackList()<br> [[AddDom...)
  • 13:59, 22 August 2008 (diff | hist) . . (+588). . N Business(New page: == SOAP Access == Functions for the Business API can be accessed using these paramenters: * WSDL URI:  https://admin.webmail.us/mailaccounts/mailaccounts.wsdl Please note that...)
  • 13:58, 22 August 2008 (diff | hist) . . (+459). . N DeleteAllUserGroups()(New page: This function will remove all groups from a user's address book. ===Input Parameters=== Four strings and a result integer Administrative username, Administrative password, D...) (current)
  • 13:58, 22 August 2008 (diff | hist) . . (+553). . N DeleteUserGroups()(New page: This function will remove one or more groups from a user's address book. ===Input Parameters=== Four strings, and array of groups, and a result integer Administrative username, ...) (current)
  • 13:58, 22 August 2008 (diff | hist) . . (+684). . N GetUserGroupsStr()(New page: This function will report the groups and group members in a user's address book. The result string will be as follows: "mygroup1;firstname1;lastname1;email1 [crlf] mygroup1; firstnam...) (current)
  • 13:58, 22 August 2008 (diff | hist) . . (+1,031). . N GetUserGroups()(New page: This function will return the groups and group members from a user's address book. The resulting associative array should look as follows: array[0]["groupName"]="mygroup1" array[...) (current)
  • 13:58, 22 August 2008 (diff | hist) . . (+856). . N AddUserGroupsStr()(New page: This function will add one or more groups to a user's address book. The contacts must be identified using the "id" element returned by GetUserContactsFull() or [[GetUserContactsFullSt...) (current)
  • 13:58, 22 August 2008 (diff | hist) . . (+890). . N AddUserGroups()(New page: This function will add one or more new contact groups to an address book. The contacts must be identified using the "id" element returned by GetUserContactsFull() or [[GetUserContacts...) (current)
  • 13:58, 22 August 2008 (diff | hist) . . (+947). . N ModifyUsercontactsStr()(New page: This function will update informationg about one or more contacts in a user's address book. The contacts must be identified using the "id" element returned by GetUserContactsFull() or...) (current)
  • 13:57, 22 August 2008 (diff | hist) . . (+945). . N ModifyUserContacts()(New page: This function allows an existing contact's information to be changed. Each contact to be changed must ge identified by the "id" returned by GetUserContactsFull() or [[GetUserContactsF...) (current)
  • 13:57, 22 August 2008 (diff | hist) . . (+460). . N DeleteAllUserContacts()(New page: This function will remove all contacts from a user's address book. ===Input Parameters=== Four strings and a result integer Administrative username, Administrative password, ...) (current)
  • 13:57, 22 August 2008 (diff | hist) . . (+723). . N DeleteUserContactsStr()(New page: This function will remove one or more contacts from a user's address book. The contacts must be identified using the "id" element returned by GetUserContactsFull() or [[GetUserContact...) (current)
  • 13:56, 22 August 2008 (diff | hist) . . (+708). . N DeleteUserContacts()(New page: This function will remove one or more contacts from a user's address book. The contacts must be identified using the "id" element returned by GetUserContactsFull() or [[GetUserContact...) (current)
  • 13:56, 22 August 2008 (diff | hist) . . (+637). . N GetUserContactsFullStr()(New page: This function will return all of the details for each contact in a user's address book. Results are stored in a string, delimited and ordered as in AddUserContactsStr(), with the addi...) (current)
  • 13:56, 22 August 2008 (diff | hist) . . (+727). . N GetUserContactsFull()(New page: This function will return all of the details for each contact in a user's address book. Results are stored in an associative array with array elements named as in AddUserContacts(), a...) (current)
  • 13:55, 22 August 2008 (diff | hist) . . (+998). . N AddUserContactsStr()(New page: This function will add one or more contacts to the address book of a particular user. The string of contacts is semi-colon (";") delimited between fields, and [crlf] delimited between con...) (current)
  • 13:55, 22 August 2008 (diff | hist) . . (+1,382). . N AddUserContacts()(New page: This function will add one or more contacts to the address book of a particular user. The associative array of address book contacts should be as follows: array[0]["owner"]="userid@d...) (current)
  • 13:55, 22 August 2008 (diff | hist) . . (+659). . N SetUserTimeZone()(New page: This function will set the user time zone. A list of acceptable time zone values may be obtained using GetTimeZoneVals(). Please see that page for a time zone value list from 14 Dece...) (current)
  • 13:55, 22 August 2008 (diff | hist) . . (+8,474). . N GetTimeZoneVals()(New page: This function will return the long list of time zone values supported by Webmail.us. Look at the bottom of this page for the current list as of 14 December 2005. ===Input Parameters=== ...)
  • 13:55, 22 August 2008 (diff | hist) . . (+1,850). . N GetDisplayPreferences()(New page: This function will return the display settings for a particular mailbox. The available settings are: compose_new_win => 0 for compose in same window, 1 for compose in new window auto...) (current)
  • 13:54, 22 August 2008 (diff | hist) . . (+716). . N GetUserIdentitiesStr()(New page: This function will return the details of each identity configured for a mailbox. Return fields include: 'full_name', 'email_address', 'reply_to', 'signature', 'use_sig' (may be "yes" or ...) (current)
  • 13:54, 22 August 2008 (diff | hist) . . (+770). . N GetUserIdentities()(New page: This function will return the details of each identity configured for a mailbox. Return fields include: 'full_name', 'email_address', 'reply_to', 'signature', 'use_sig' (may be "yes" or ...) (current)
  • 13:54, 22 August 2008 (diff | hist) . . (+687). . N GetUserContactsSimpleStr()(New page: This function will return the 'id', 'lastname', 'firstname', 'nickname', 'email', and 'favorite' status (1=favorite/frequent contact,0=not) as a semi-colon (;) delimited list, with [crlf] ...) (current)
  • 13:54, 22 August 2008 (diff | hist) . . (+663). . N GetUserContactsSimple()(New page: This function will return the 'id', 'lastname', 'firstname', 'nickname', 'email', and 'favorite' status (1=favorite/frequent contact,0=not) of all contacts set up on a mailbox. ===Input P...) (current)
  • 13:53, 22 August 2008 (diff | hist) . . (+616). . N SetHelpStatus()(New page: This function is used to enable and disable the links to context-sensitive help for webmail clients using a private label webmail site. Use GetHelpStatus() to find out if context-sens...) (current)
  • 13:53, 22 August 2008 (diff | hist) . . (+552). . N GetHelpStatus()(New page: This function will report whether or not the context-sensitive help is enabled for a private label webmail site. Use SetHelpStatus() to turn help on or off for a domain. ===Input Par...) (current)
  • 13:53, 22 August 2008 (diff | hist) . . (+674). . N GetUserNumMessages()(New page: This function will return the number of messages in the Inbox folder of a mailbox and will return the number of messages in the Inbox folder flagged as new based on the IMAP flag. ===Inpu...) (current)
  • 13:52, 22 August 2008 (diff | hist) . . (+262). . N Ping()(New page: This function will allow a developer to send a string to the SOAP server and receive that same string back as the response to test for SOAP connectivity. <b>Input Parameters</b> One stri...) (current)
  • 13:52, 22 August 2008 (diff | hist) . . (+1,323). . N Webmail(New page: == SOAP Access == Functions for the Webmail API should be accessed using these paramenters: * WSDL URI (as of May 2006): https://secure.webmail.us/mail4/soap/soap_server.php?wsdl (Old U...)
  • 13:51, 22 August 2008 (diff | hist) . . (+1,725). . N LoginUserWebmail()(New page: This function will allow a developer, using an administrative username and password, to obtain a SessionID variable that can be used to redirect a web page viewer directly to the webmail c...) (current)
  • 13:51, 22 August 2008 (diff | hist) . . (-4,471). . m Resultcodes(Protected "Resultcodes" [edit=sysop:move=sysop])
  • 13:49, 22 August 2008 (diff | hist) . . (+4,471). . N Resultcodes(New page: 1: function successful, no errors<br> -1: general system failure<br> -2: duplicate hostname<br> -3: duplicate userid<br> -4: invalid hostname<br> -5: invalid userid<br> -6: invalid user ...)
  • 13:49, 22 August 2008 (diff | hist) . . (+1,017). . N AddUser()(New page: This function will add a new mailbox to the Webmail system. It can take up to 5 minutes for new mailbox information to spread across the several server clusters that must update mailbox d...) (current)
  • 13:49, 22 August 2008 (diff | hist) . . (+1,099). . Main Page