Okay...
I have a server that uses Cpanel, and my mail server is Cpanel's cppop. I am trying to create an email address...
With an older version of Cpanel, you could use this command line through sockets.
GET /frontend/x2/mail/doaddpop.html?email=emailaddress&domain=mysite.ca&password=emailpassword"a=10 HTTP/1.0\r\nAuthorization: Basic $pass \r\n
That worked just fine because email addresses were created through GET variables.
Now, they have changed it to POST variables.
Now, I need to create an email address, while faking the following post variables:
email
domain
password
quota
Can anyone help me??? I know I need to use sockets, and pass the POST variables, but I have no idea how to.