473,378 Members | 1,405 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,378 software developers and data experts.

Create pop3 mailboxes progmatically

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 how I would access this funcationality?

Thanks,
Ron Vecchi

Nov 15 '05 #1
4 2698

Hi Ron,

This funcationality is a new one introduced by Microsoft, I have not find
useful document for this.
I have consulted someone others for the programming interface of pop3 mail
server.
I will do the research after I got some useful information and I will reply
to you as soon as possible.

Thanks for your understanding.

Best regards,
Jeffrey Tan
Microsoft Online Partner Support
Get Secure! - www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.

--------------------
| From: "Ron Vecchi" <rv*****@xilehdvecchi.com>
| Subject: Create pop3 mailboxes progmatically
| Date: Wed, 8 Oct 2003 11:32:48 -0400
| Lines: 11
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.3790.0
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.0
| Message-ID: <Oh**************@TK2MSFTNGP10.phx.gbl>
| Newsgroups: microsoft.public.dotnet.languages.csharp
| NNTP-Posting-Host: pcp02828467pcs.roylok01.mi.comcast.net 68.85.156.233
| Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP10.phx.gbl
| Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.languages.csharp:190018
| X-Tomcat-NG: microsoft.public.dotnet.languages.csharp
|
| 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 how I would access this funcationality?
|
| Thanks,
| Ron Vecchi
|
|
|
|

Nov 15 '05 #2

Hi Ron,

After you installed the pop3 mail server, there will be an exe file
winpop.exe in the System32 directory which can create the mailbox like this:
"winpop add us**@domain.com"

You can use .Net process class to invoke this exe to create a new mailbox.

After you installed the pop3 mail server, there will be option for you to
specify the authentication type.
If you use the Local Windows User Authentication, you can create a mailbox
with the name of the exist local user.
But if you want to create a mailbox that not is the name of local user, you
should create the user first. The winpop also has a commandline arg
/createuser, you can invoke it from your .Net application also.

Hope this helps,

Best regards,
Jeffrey Tan
Microsoft Online Partner Support
Get Secure! - www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.

--------------------
| From: "Ron Vecchi" <rv*****@xilehdvecchi.com>
| Subject: Create pop3 mailboxes progmatically
| Date: Wed, 8 Oct 2003 11:32:48 -0400
| Lines: 11
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.3790.0
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.0
| Message-ID: <Oh**************@TK2MSFTNGP10.phx.gbl>
| Newsgroups: microsoft.public.dotnet.languages.csharp
| NNTP-Posting-Host: pcp02828467pcs.roylok01.mi.comcast.net 68.85.156.233
| Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP10.phx.gbl
| Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.languages.csharp:190018
| X-Tomcat-NG: microsoft.public.dotnet.languages.csharp
|
| 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 how I would access this funcationality?
|
| Thanks,
| Ron Vecchi
|
|
|
|

Nov 15 '05 #3
Great thanks, should get me going pretty good.
"Jeffrey Tan[MSFT]" <v-*****@online.microsoft.com> wrote in message
news:Wb**************@cpmsftngxa06.phx.gbl...

Hi Ron,

After you installed the pop3 mail server, there will be an exe file
winpop.exe in the System32 directory which can create the mailbox like this: "winpop add us**@domain.com"

You can use .Net process class to invoke this exe to create a new mailbox.

After you installed the pop3 mail server, there will be option for you to
specify the authentication type.
If you use the Local Windows User Authentication, you can create a mailbox
with the name of the exist local user.
But if you want to create a mailbox that not is the name of local user, you should create the user first. The winpop also has a commandline arg
/createuser, you can invoke it from your .Net application also.

Hope this helps,

Best regards,
Jeffrey Tan
Microsoft Online Partner Support
Get Secure! - www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.

--------------------
| From: "Ron Vecchi" <rv*****@xilehdvecchi.com>
| Subject: Create pop3 mailboxes progmatically
| Date: Wed, 8 Oct 2003 11:32:48 -0400
| Lines: 11
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.3790.0
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.0
| Message-ID: <Oh**************@TK2MSFTNGP10.phx.gbl>
| Newsgroups: microsoft.public.dotnet.languages.csharp
| NNTP-Posting-Host: pcp02828467pcs.roylok01.mi.comcast.net 68.85.156.233
| Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP10.phx.gbl
| Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.languages.csharp:190018 | X-Tomcat-NG: microsoft.public.dotnet.languages.csharp
|
| 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 how I would access this funcationality?
|
| Thanks,
| Ron Vecchi
|
|
|
|

Nov 15 '05 #4

Hi Ron,

I am glad it goes well.
Because the feature of pop3 mail server on win2003 is a new comer, there is
very few document in MSDN.
If you want to develop on it, I think you can refer to the help document
that followed by the pop3 mail server after you installed it.

Hope this helps,

Best regards,
Jeffrey Tan
Microsoft Online Partner Support
Get Secure! - www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.

--------------------
| From: "Ron Vecchi" <rv*****@xilehdvecchi.com>
| References: <Oh**************@TK2MSFTNGP10.phx.gbl>
<Wb**************@cpmsftngxa06.phx.gbl>
| Subject: Re: Create pop3 mailboxes progmatically
| Date: Thu, 9 Oct 2003 10:38:20 -0400
| Lines: 62
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.3790.0
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.0
| Message-ID: <eB**************@TK2MSFTNGP11.phx.gbl>
| Newsgroups: microsoft.public.dotnet.languages.csharp
| NNTP-Posting-Host: pcp02828467pcs.roylok01.mi.comcast.net 68.85.156.233
| Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP11.phx.gbl
| Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.languages.csharp:190246
| X-Tomcat-NG: microsoft.public.dotnet.languages.csharp
|
| Great thanks, should get me going pretty good.
| "Jeffrey Tan[MSFT]" <v-*****@online.microsoft.com> wrote in message
| news:Wb**************@cpmsftngxa06.phx.gbl...
| >
| > Hi Ron,
| >
| > After you installed the pop3 mail server, there will be an exe file
| > winpop.exe in the System32 directory which can create the mailbox like
| this:
| > "winpop add us**@domain.com"
| >
| > You can use .Net process class to invoke this exe to create a new
mailbox.
| >
| > After you installed the pop3 mail server, there will be option for you
to
| > specify the authentication type.
| > If you use the Local Windows User Authentication, you can create a
mailbox
| > with the name of the exist local user.
| > But if you want to create a mailbox that not is the name of local user,
| you
| > should create the user first. The winpop also has a commandline arg
| > /createuser, you can invoke it from your .Net application also.
| >
| > Hope this helps,
| >
| > Best regards,
| > Jeffrey Tan
| > Microsoft Online Partner Support
| > Get Secure! - www.microsoft.com/security
| > This posting is provided "as is" with no warranties and confers no
rights.
| >
| > --------------------
| > | From: "Ron Vecchi" <rv*****@xilehdvecchi.com>
| > | Subject: Create pop3 mailboxes progmatically
| > | Date: Wed, 8 Oct 2003 11:32:48 -0400
| > | Lines: 11
| > | X-Priority: 3
| > | X-MSMail-Priority: Normal
| > | X-Newsreader: Microsoft Outlook Express 6.00.3790.0
| > | X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.0
| > | Message-ID: <Oh**************@TK2MSFTNGP10.phx.gbl>
| > | Newsgroups: microsoft.public.dotnet.languages.csharp
| > | NNTP-Posting-Host: pcp02828467pcs.roylok01.mi.comcast.net
68.85.156.233
| > | Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP10.phx.gbl
| > | Xref: cpmsftngxa06.phx.gbl
| microsoft.public.dotnet.languages.csharp:190018
| > | X-Tomcat-NG: microsoft.public.dotnet.languages.csharp
| > |
| > | 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 how I would access this funcationality?
| > |
| > | Thanks,
| > | Ron Vecchi
| > |
| > |
| > |
| > |
| >
|
|
|

Nov 15 '05 #5

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

Similar topics

2
by: Markku Uttula | last post by:
I wrote some classes for easy handling of POP3-mailboxes with PHP. Because I think others will benefit from them also, I'd like to notify their exist here. I know they're not PEAR, but I think they...
0
by: Eric McDaniel | last post by:
This may be a question for ActiveState support, but just in case anyone out there knows what the problem is... My call to Net::POP3->new() works fine when run through the perl interpreter, but...
8
by: Jazzis | last post by:
If I want to execute an ASP page and get NOTHING in return, no HTL Headers as well? response.clear clears only the contents, but HTML Header is still returned. Thanks for your time. Adam
0
by: skippy | last post by:
I am writing a program in C# that needs to create and modify exchange mailboxes/recipients on our exchange 5.5 server. I had this working a long time ago in VB but I can not find any code in .net...
0
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...
1
by: Florian Marinoiu | last post by:
Hi, I was wondering if possible to create a web interface for Windows Server 2003 Pop3 clients to be able to red their email by using a web browser instead of a Pop3 client. Is it a SDK...
0
by: pyda001 | last post by:
Hi! I have postfix running and working as it should. I can add, remove and administer mailboxes and aliases using postfixadmin. All well there too. Now, I want to be able to add mailboxes and...
2
by: Abhi | last post by:
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: yyy@xxx.com how i should do in...
0
by: =?Utf-8?B?Q2hhcmxlcw==?= | last post by:
Like many people, I normally use Yahoo! Mail via the web and like to keep all my emails stored on the Yahoo! server. However sometimes I can’t get access to a PC/the web and I download my emails...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
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
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
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...

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.