473,385 Members | 2,029 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

how to create a user in web mail using dotnet coad by using webmailserver api

i need to create a user in web mail using dotnet coad by using
webmailserver api

ex: xxx is my webmail
then
i want to create to a user in that webmail xxx
ex: yy*@xxx.com
how i should do in dotnet code
plz.... help me

Aug 2 '06 #1
2 2613
Hello Abhi,
"Abhi" <y.********@gmail.comwrote in message
news:11**********************@m79g2000cwm.googlegr oups.com...
i need to create a user in web mail using dotnet coad by using
webmailserver api

ex: xxx is my webmail
then
i want to create to a user in that webmail xxx
ex: yy*@xxx.com
how i should do in dotnet code
plz.... help me
e-mail is normally provided through one of many different e-mail server
applications, usually using the SMTP and POP3 protocols. For this reason,
e-mail server software is usually called SMTP Servers or POP3 Servers. The
mailboxes themselves are provided in POP3 servers. (POP means Post Office
Protocol. We are on version 3). SMTP servers are the software systems that
forward the mails themselves. If POP3 is the post office, then SMTP is the
letter carrier.

Fortunately, the POP3 protocol makes it fairly easy for different kinds of
software to communicate with each other. It is a fairly simple protocol, as
most of the Internet protocols are. Unfortunately, different POP3 software
will handle the system administration tasks in different ways... completely
different ways. What you want to do is add a mail box, and that is a system
admin function.

Some POP3 servers store the list of mail boxes in a file. Others use a
simple database. With at least one that I ran across, you have to use a
call from the command line to create the mail box. It depends on the
software you are running.

So, if you have domain SNAFU.COM and you want to create the e-mail address
Ji***@snafu.com, then you need talk to the particular bit of POP3 software
that is running on snafu.com. For us to help you , you have to do a good
bit of homework. Call up the system administrators for snafu.com and ask
them what POP3 software they are using to provide e-mail, and if they will
let you create mail boxes. Then, when they tell you the software, get in
touch with the software vendor to find out how that software package 'finds'
or 'knows about' a mailbox.

If the system administrators say "We do not want you to be able to create a
mailbox from your code" then, for the most part, we cannot help you. Very
few systems have gaps wide enough to allow someone to create a mailbox if
the security is set up to prevent it.

Assuming that they cooperate and you get more information, bring that
information to this newsgroup. We can help you to write data in particular
formats, or turn off and on services, and even give you some pointers. What
we cannot do, with the information you have given, is write a book giving
you every possible answer to your question.

Do your homework, then come back with information. We will help you then.

--
--- Nick Malik [Microsoft]
MCSD, CFPS, Certified Scrummaster
http://blogs.msdn.com/nickmalik

Disclaimer: Opinions expressed in this forum are my own, and not
representative of my employer.
I do not answer questions on behalf of my employer. I'm just a
programmer helping programmers.
--
Aug 12 '06 #2
Nick,

Nice reply

Compliments,

Cor

"Nick Malik [Microsoft]" <ni*******@hotmail.nospam.comschreef in bericht
news:-L******************************@comcast.com...
Hello Abhi,
"Abhi" <y.********@gmail.comwrote in message
news:11**********************@m79g2000cwm.googlegr oups.com...
>i need to create a user in web mail using dotnet coad by using
webmailserver api

ex: xxx is my webmail
then
i want to create to a user in that webmail xxx
ex: yy*@xxx.com
how i should do in dotnet code
plz.... help me

e-mail is normally provided through one of many different e-mail server
applications, usually using the SMTP and POP3 protocols. For this reason,
e-mail server software is usually called SMTP Servers or POP3 Servers.
The mailboxes themselves are provided in POP3 servers. (POP means Post
Office Protocol. We are on version 3). SMTP servers are the software
systems that forward the mails themselves. If POP3 is the post office,
then SMTP is the letter carrier.

Fortunately, the POP3 protocol makes it fairly easy for different kinds of
software to communicate with each other. It is a fairly simple protocol,
as most of the Internet protocols are. Unfortunately, different POP3
software will handle the system administration tasks in different ways...
completely different ways. What you want to do is add a mail box, and
that is a system admin function.

Some POP3 servers store the list of mail boxes in a file. Others use a
simple database. With at least one that I ran across, you have to use a
call from the command line to create the mail box. It depends on the
software you are running.

So, if you have domain SNAFU.COM and you want to create the e-mail address
Ji***@snafu.com, then you need talk to the particular bit of POP3 software
that is running on snafu.com. For us to help you , you have to do a good
bit of homework. Call up the system administrators for snafu.com and ask
them what POP3 software they are using to provide e-mail, and if they will
let you create mail boxes. Then, when they tell you the software, get in
touch with the software vendor to find out how that software package
'finds' or 'knows about' a mailbox.

If the system administrators say "We do not want you to be able to create
a mailbox from your code" then, for the most part, we cannot help you.
Very few systems have gaps wide enough to allow someone to create a
mailbox if the security is set up to prevent it.

Assuming that they cooperate and you get more information, bring that
information to this newsgroup. We can help you to write data in
particular formats, or turn off and on services, and even give you some
pointers. What we cannot do, with the information you have given, is
write a book giving you every possible answer to your question.

Do your homework, then come back with information. We will help you then.

--
--- Nick Malik [Microsoft]
MCSD, CFPS, Certified Scrummaster
http://blogs.msdn.com/nickmalik

Disclaimer: Opinions expressed in this forum are my own, and not
representative of my employer.
I do not answer questions on behalf of my employer. I'm just a
programmer helping programmers.
--


Aug 13 '06 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: Ian | last post by:
The beginning of my assembly that I am getting the access error from looks like this. ********************************* Imports System.EnterpriseServices Imports System Imports...
4
by: Ron Vecchi | last post by:
I a runnning w2k3 pop3 mail server that came with iis6. I would like to write an application that progammtically creates the new mailboxes in an already established mail domain. Does anyone know...
3
by: Noah Coad [MVP .NET/C#] | last post by:
Howdy! I need to know what user is using which process on the system. "System.Diagnostics.Process.GetProcesseses" will return an array of processes, but I need to know if the process returned is...
0
by: Richard Blewett [DevelopMentor] | last post by:
using System; using System.Data; using System.Data.SqlClient; class App { static void Main(string args) { string SQL = @"Create table Foo (
7
by: Dennis C. Drumm | last post by:
Can my program access the HKEY_LOCAL_MACHINE/Software section of the registry when being used by a user with restricted rights (not with admin rights)? If so, how? I have a program that...
2
by: Robert V. Hanson | last post by:
If you have per user information that you want to store in session and the setting in web.config is set to cookieless=false so you are intending on using cookies, the user's browser is set to not...
1
by: Chirag Malvi | last post by:
hello all, I am developing the web application using ASP.net and VS.2003 IDE. here is the situation which i want to implement. 1) User is browsing some webform. I want to trap this event....
4
by: I_AM_DON_AND_YOU? | last post by:
There is one more problem I am facing but didn't get the solution. In my Setup Program I am not been able to create 2 things (when the program is intalled on the client machine ) : (1) create...
5
by: Dennis | last post by:
Is there any way that I can send an e-mail from a user's machine when he clicks on a button ("Contact Us") in my applicaiton that he is running? Bottom line is that I need to get his Mail Server...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.