User contributions
From Rackspace Email & Apps API
(newest | oldest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)
- 00:22, 20 July 2021 (diff | hist) . . (+6) . . Domain Webmail Settings (Rest API) (→Update) (current)
- 00:21, 20 July 2021 (diff | hist) . . (+6) . . Domain Webmail Settings (Rest API) (→Webmail Settings)
- 07:51, 28 January 2020 (diff | hist) . . (-2,311) . . Exchange Mailbox (Rest API) (→v1 - Current) (current)
- 13:24, 5 June 2019 (diff | hist) . . (+128) . . Customer (Rest API) (→Company contacts) (current)
- 08:53, 21 October 2008 (diff | hist) . . (+18) . . AddDomain() (current)
- 08:53, 21 October 2008 (diff | hist) . . (+10) . . AddDomain()
- 12:55, 19 September 2008 (diff | hist) . . (-17) . . Webmail
- 12:54, 19 September 2008 (diff | hist) . . (+3) . . Ruby (current)
- 12: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...)
- 12:48, 19 September 2008 (diff | hist) . . (+12) . . Main Page
- 12:42, 19 September 2008 (diff | hist) . . (-132) . . Beta
- 16:37, 14 September 2008 (diff | hist) . . (-32) . . MediaWiki:Sidebar
- 16: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...)
- 15: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)
- 15: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)
- 15: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)
- 15: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)
- 15: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)
- 15: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)
- 15: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)
- 15: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)
- 15: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)
- 15: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)
- 15: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)
- 15: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)
- 15: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)
- 15: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)
- 15: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)
- 15: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)
- 15: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...)
- 15: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)
- 15: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)
- 15: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 /> <%<...)
- 15: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)
- 15: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)
- 15: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...)
- 15: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)
- 15: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)
- 15: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...)
- 15: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...)
- 15: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: ...)
- 15: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 ...)
- 15: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...)
- 15: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...)
- 15: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...)
- 15:53, 25 August 2008 (diff | hist) . . (+139) . . N AliasIndividual (New page: CheckAliasExists()<br> GetUserAliasesString()<br> AddAlias()<br> ModifyAlias()<br> DeleteAlias()<br> GetAlias()<br>) (current)
- 15:53, 25 August 2008 (diff | hist) . . (+172) . . N AliasDomain (New page: ModifyDomainAliases()<br> SetNobodyAlias()<br> RemoveNobodyAlias()<br> GetUserAliasesBulk()<br> AddUserAliasesBulk()<br> DeleteUserAliasesBulk()<br>)
- 15: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)
- 15: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)
- 15: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)
(newest | oldest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)