[cvs] [Wiki] changed: XmlRpcPythonHowTo
Wiki Guest
wikiguest at horde.org
Tue Feb 27 09:36:02 PST 2007
guest [77.180.64.209] Tue, 27 Feb 2007 09:36:01 -0800
Modified page: http://wiki.horde.org/XmlRpcPythonHowTo
New Revision: 1.1
Change log: More info for different configurations
@@ -20,19 +20,23 @@
import xmlrpclib
############################### User settings ###############################
-# The user name on the Horde server. Use the _full_ email address here!
-username = "user at my-server.com"
+# The user name on the Horde server.
+# When using imp authentication, always use the _full_ email address here!
+# When using SQL authentication, just use your login name
+username = "joe.user at my-server.com"
+# username = "joe.user"
# The password of this Horde user
password = "secret"
# Protocol to use for connection ("http" or "https")
protocol = "https"
-# Server host name
+# Server host name (and directory, if needed)
hostname = "horde.my-server.com"
+# hostname = "www.my-server.com/horde"
############################## End of settings ##############################
url = "%s://%s:%s@%s/rpc.php" % (protocol, username, password, hostname)
More information about the cvs
mailing list