[xmail] Re: help (fwd)

2003-04-02 Thread Matic

Hi,

i did try the MAIL_ROOT="\\?\c:\MailRoot"  "trick" and it works.

I can create a domain com4.com.br, accounts for that domain and send and
receive mail to/from that domain.

I don't have the tool to recompile the changes you suggested but will be
happy to try your recompiled version if you give me the link.

Matic






- Original Message -
From: "Davide Libenzi" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: 3. april 2003 03:05
Subject: [xmail] Re: help (fwd)


>
> On Wed, 2 Apr 2003, Shawn Anderson wrote:
>
> > MAIL_ROOT="\\?\c:\MailRoot"
>
> Could someone please try the above trick plus using this :
>
>
> char   *SysGetTmpFile(char *pszFileName)
> {
>
> charszTmpPath[SYS_MAX_PATH] = "";
>
> GetTempPath(sizeof(szTmpPath) - 1, szTmpPath);
>
> static unsigned int uFileSeqNr = 0;
> SYS_LONGLONGllFileID = (((SYS_LONGLONG) GetCurrentThreadId()) <<
32) | (SYS_LONGLONG) ++uFileSeqNr;
>
> SysSNPrintf(pszFileName, SYS_MAX_PATH - 1, "?\\%smsrv%I64x.tmp",
> szTmpPath, llFileID);
>
> return (pszFileName);
>
> }
>
>
> inside SysDepWin.cpp
>
>
>
>
>
> - Davide
>
> -
> To unsubscribe from this list: send the line "unsubscribe xmail" in
> the body of a message to [EMAIL PROTECTED]
> For general help: send the line "help" in the body of a message to
> [EMAIL PROTECTED]
>

-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Locales

2003-04-02 Thread Verner

Why all text variable, constant, error messages
to not place in one text file?
To change it was possible not compiling the program.
So it will be convenient to localize XMail server.

Verner A.R

-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Re: help (fwd)

2003-04-02 Thread Verner

All is simple.

It is impossible to create the file starting with "com1".., "lpt1"... Etc.
and ended by three characters (extension)

For example:

It is impossible
com1.etx
lpt1.eee
com2.a

It is possible
com1.e.ett
com1.blabla


-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Re: help (fwd)

2003-04-02 Thread Rob Arends

Davide, you are right there are there are certain reserved filenames, mostly
legacy stuff.
LPT, LPT1, LPT2, etc
COM1, COM2,COM3, etc
CON, CTTY, etc

The problem arises from creating a directory or file. AND that the name upto
the first dot is a match on the reserved name.
I did a test for you.

C:\Documents and Settings\Administrator>md com4.com.br
The directory name is invalid.
C:\Documents and Settings\Administrator>md comfour.com.br
C:\Documents and Settings\Administrator>md com41.com.br
C:\Documents and Settings\Administrator>md xmail.com4.com.br
C:\Documents and Settings\Administrator>dir

03/04/2003  10:30 comfour.com.br
03/04/2003  10:30 com41.com.br
03/04/2003  10:30 xmail.com4.com.br

You could add anything to the name before you create the directory or file,
because only the first part of the name upto the first dot will become a
match on the reserved names.

Rob :-)
__
Censorship can't eliminate evil; it can only kill freedom.


> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] Behalf Of Davide Libenzi
> Sent: Thursday, 3 April 2003 2:31 AM
> To: XMail mailing list
> Subject: [xmail] help (fwd)
>
>
>
>
> Can someone running XMail on Windows confirm this ? It is true that that
> domain "com4.com.br" could not exist on XMail on Windows, but it should be
> able to receive messages from such domain.
> BTW, did I ever tell you that Windows *sucks* ? They have developers that
> after 20 years did not firuge it out that the string "com4.com.br" is
> different from the string "com4" !!
>
>
>
>
> - Davide
>
>
> -- Forwarded message --
> Date: Wed, 2 Apr 2003 10:42:32 -0300
> From: Marco A. Zago <[EMAIL PROTECTED]>
> To: [EMAIL PROTECTED]
> Subject: help
>
> Gentlemen, My domain of the InterNet is www.com4.com.br and comes
> perceiving that I do not obtain to send email pra any supplier
> that uses the xmail, for that we perceive is that the xmail
> creates a folder with the name of the email, or either, the
> folder com4 nao can be created by windows.
>
>
>
> Marco Zago
> Franca/Sp
> Brazil
> -
> To unsubscribe from this list: send the line "unsubscribe xmail" in
> the body of a message to [EMAIL PROTECTED]
> For general help: send the line "help" in the body of a message to
> [EMAIL PROTECTED]
>
>

-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Re: help (fwd)

2003-04-02 Thread Loris Chiocca

And just to proove it:

#include 
#include 

int main(int argc, char* argv[])
{
HANDLE  h;
unsigned long   numwritten;

h = CreateFile(".\\C:\\COM1", GENERIC_READ | GENERIC_WRITE, 0, NULL,
CREATE_ALWAYS, 0, 0);
WriteFile(h, "hello", 5, &numwritten, NULL);
CloseHandle(h);
return 0;
}

This will create a "COM1" file within your c: drive, write "hello" in it and
close it :)

Don't ask me if this works in win9x. This works in WinNT and Win2000.

Loris

-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Re: help (fwd)

2003-04-02 Thread Loris Chiocca

> Write a C function called OpenFileName(char const *pszFileName), that when
> called with the special file name "com1", it calls the function
> OpenSpecialDevice(char const *pszFileName). Otherwise calls the function
> GenericFileOpen(char const *pszFileName).

Easy... to the filename add the following:
newFilename = "??\\" + oldFilename;

This will open the COMx port if oldFilename="COMx" and open any other file
if a path was added.

Reference: WinObj.exe
[http://www.sysinternals.com/ntw2k/freeware/winobj.shtml]

Loris

-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Re: help (fwd)

2003-04-02 Thread Loris Chiocca

> What are you talking about ? The Windows API is CreateFile() and not
> NtCreateFile(). Or even better, 90% of the apps use fopen()+fread()+...
> They need to know nothing about native mode and NtCreateFile(). The fact
> that you need the DDK should let you understand how standard apps should
> know about NtCreateFile(). And look, the code is broken in any case. In
> every subsystem different from /Subsystem:suck :
>
> "com1" != "com1.bau.meaw"

First: If someone out there is against MS, then I won't be able to change
their mind, that's for sure.

Second: The Window API you are talking about is called Win32 API. Guess what
kind of appication you are compiling when using the win32 api? Right, a
application that uses almost the same interface as win32s. So...

Third: I'm not quite sure what you're talking about when saying "In every
subsystem different from /Subsystem:suck - "com1" != "com1.bau.meaw"". In
the POSIX subsystem of NT you can access "com1" just like any other file.
POSIX doesn't understand the concept of COM ports the way DOS did. These
COMx files are ONLY IN THE WIN32 SUBSYSTEM! Only there. Nowhere else.

Fourth: If someone out there is against MS, then I won't be able to change
their mind, that's for sure.

And just to make it clear: I'm not a fan of win32. It is not what I call a
good way of doing things. Although I do like the concepts behind NT. If you
had a glance at the guts of NT you would be astonished how similar it is to
unix kernels; in some points it might just be better... but that's a
different story.

Loris

-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Re: help (fwd)

2003-04-02 Thread Charles Frolick

Microsoft KB article about it:
http://support.microsoft.com/default.aspx?scid=kb;en-us;74496

Another one describing how to remove them if they somehow exist:
http://support.microsoft.com/default.aspx?scid=kb;EN-US;120716
Interesting since it appears to use some built in bypasses for the DEL
and RD commands.

This one provides some background as why:
http://support.microsoft.com/default.aspx?scid=kb;en-us;71843

No explaination as to why dev.* causes any problems, maybe the treat
anything past the dot as parameters for the device, who knows, anybody
know a MS solution provider to ask?

Chuck Frolick

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
On Behalf Of Davide Libenzi
Sent: Wednesday, April 02, 2003 11:24 AM
To: XMail mailing list
Subject: [xmail] Re: help (fwd)



On Wed, 2 Apr 2003, Thomas Berger wrote:

>
> Calin Florescu wrote:
> >
> > Apparently it's impossible to create on Windows a file or a folder
having
> > the name starting with "com" followed by a digit (0-9) and dot "."
> > ("com4.com.br", "com1.ro" or "com9."). Probably because is similar
with
> > serial ports notation.
>
>
> It *is* DOS device notation: Those special files do
> exist everywhere, therefore you don't have to redirect
> to /dev/something but can use something whereever you
> are.

"com1" "prn" "lpt" "nul"

might be fine, even if I prefer the /dev/com1 notation that enables
myself
to have a "com1" file name in another directory.

"com1[.*]"

is definitely *not* OK to be treated as special file.




- Davide

-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]


-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Re: help (fwd)

2003-04-02 Thread Loris Chiocca

You are compiling win32 files and NOT native executables (/Subsystem:
native). So you are using the "DOS-interface". Don't blame MS for someone
using _that_ interface.

Greets
Loris

> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] Behalf Of Davide Libenzi
> Sent: Mittwoch, 2. April 2003 20:38
> To: XMail mailing list
> Subject: [xmail] Re: help (fwd)
>
> It is not a matter of case sensitivity. It a matter of doing things
> correctly:
>
> "com1" != "com1.bau.meaw"
>
> *dot*
>
> And things *must* be implemented correctly from an application point of
> view. You cannot pretend apps to use kernel functions to do things
> correctly. This is what happened with DOS and this is way it took a while
> for M$ to migrate and to drop these hidden hooks apps used to exploit.

-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Re: help (fwd)

2003-04-02 Thread Loris Chiocca

The problem is not the OS, but the subsystem. WinNT+ is _case_sensitive_ and
allows _any_ letter (including points, dashes, etc..). Driver letters are
also mapped in the subsystem. The best way would really be to use the kernel
file routines for NT+ systems.

Loris

> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] Behalf Of Davide Libenzi
> Sent: Mittwoch, 2. April 2003 19:30
> To: XMail mailing list
> Subject: [xmail] Re: help (fwd)
>
> On Wed, 2 Apr 2003, Shawn Anderson wrote:
>
> >
> > What about creating a ".com4.com.br" and add a domainalias???
>
> Yes, I don't see any other solution ( besides switching to another OS :) )
>
> - Davide

-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] sending email

2003-04-02 Thread Alex Young
Hi,
If I set the outgoing SMTP threads higher will the email send out from the server 
quicker? I currently have 10k messages waiting to go out from our football newletter 
and its taking ages.

What would a good number ot put it up to on a machine with a PIII 500mhz with 1gb ram?

Thanks,
Alex
-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Re: help (fwd)

2003-04-02 Thread Sylvain - SdV Plurimédia

 and aux[.*] :)

- Original Message - 
From: "Thomas Berger" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, April 02, 2003 7:20 PM
Subject: [xmail] Re: help (fwd)



Calin Florescu wrote:
> 
> Apparently it's impossible to create on Windows a file or a folder having
> the name starting with "com" followed by a digit (0-9) and dot "."
> ("com4.com.br", "com1.ro" or "com9."). Probably because is similar with
> serial ports notation.


It *is* DOS device notation: Those special files do
exist everywhere, therefore you don't have to redirect
to /dev/something but can use something whereever you
are.

This applies not only to com[.*], but also to nul[.*], prn[.*], 
and lpt[.*]

Cheers
Thomas Berger
-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Re: help (fwd)

2003-04-02 Thread Sylvain - SdV Plurimédia

not really true, according to code red exploits..
ex :
mkdir \\.\c:\com1.example
rmdir \\.\c:\com1.example

note : "cd" can't access such directory, because it is "UNC path"..
hilarious ;)

I think the solution would be to use some kernel function such as
zwcreatedirectory or something like this.


- Original Message -
From: "Calin Florescu" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, April 02, 2003 7:13 PM
Subject: [xmail] Re: help (fwd)



Apparently it's impossible to create on Windows a file or a folder having
the name starting with "com" followed by a digit (0-9) and dot "."
("com4.com.br", "com1.ro" or "com9."). Probably because is similar with
serial ports notation.



Calin



- Original Message -
From: "Davide Libenzi" <[EMAIL PROTECTED]>
To: "XMail mailing list" <[EMAIL PROTECTED]>
Sent: Wednesday, April 02, 2003 7:31 PM
Subject: [xmail] help (fwd)




Can someone running XMail on Windows confirm this ? It is true that that
domain "com4.com.br" could not exist on XMail on Windows, but it should be
able to receive messages from such domain.
BTW, did I ever tell you that Windows *sucks* ? They have developers that
after 20 years did not firuge it out that the string "com4.com.br" is
different from the string "com4" !!




- Davide


-- Forwarded message --
Date: Wed, 2 Apr 2003 10:42:32 -0300
From: Marco A. Zago <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: help

Gentlemen, My domain of the InterNet is www.com4.com.br and comes perceiving
that I do not obtain to send email pra any supplier that uses the xmail, for
that we perceive is that the xmail creates a folder with the name of the
email, or either, the folder com4 nao can be created by windows.



Marco Zago
Franca/Sp
Brazil
-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]

-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Re: help (fwd)

2003-04-02 Thread Calin Florescu

Apparently it's impossible to create on Windows a file or a folder having
the name starting with "com" followed by a digit (0-9) and dot "."
("com4.com.br", "com1.ro" or "com9."). Probably because is similar with
serial ports notation.



Calin



- Original Message -
From: "Davide Libenzi" <[EMAIL PROTECTED]>
To: "XMail mailing list" <[EMAIL PROTECTED]>
Sent: Wednesday, April 02, 2003 7:31 PM
Subject: [xmail] help (fwd)




Can someone running XMail on Windows confirm this ? It is true that that
domain "com4.com.br" could not exist on XMail on Windows, but it should be
able to receive messages from such domain.
BTW, did I ever tell you that Windows *sucks* ? They have developers that
after 20 years did not firuge it out that the string "com4.com.br" is
different from the string "com4" !!




- Davide


-- Forwarded message --
Date: Wed, 2 Apr 2003 10:42:32 -0300
From: Marco A. Zago <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: help

Gentlemen, My domain of the InterNet is www.com4.com.br and comes perceiving
that I do not obtain to send email pra any supplier that uses the xmail, for
that we perceive is that the xmail creates a folder with the name of the
email, or either, the folder com4 nao can be created by windows.



Marco Zago
Franca/Sp
Brazil
-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]

-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Re: help (fwd)

2003-04-02 Thread Phin Pope

Hi,

You can actually get around the COM issue on Windows. You have to FTP
remote create the file in a directory that has guest write permissions.
Once it is there, you can do nothing with it but you can get it up there
at least.

Learnt that the hard way, crappy windows security :)

Best Regards

Phin

> -Original Message-
> From: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED] On Behalf Of Orion Productions
> Sent: 02 April 2003 17:54
> To: [EMAIL PROTECTED]
> Subject: [xmail] Re: help (fwd)
> 
> 
> 
> Whaaahhaaa, this is hilarious,
> nothing from com0 to com9 can be created! :-s
> 
> - Original Message -
> From: "Rolf Boxenstreit" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Wednesday, April 02, 2003 6:44 PM
> Subject: [xmail] Re: help (fwd)
> 
> 
> >
> > It  __is__ true!  Windows refuses to allow a directory with 
> that name to
> be
> > created.
> >
> > Thankfully my XMail is on Linux, I just played with it on a 
> Win2K test
> > machine.
> >
> > - Rolf
> >
> >
> > - Original Message -
> > From: Davide Libenzi
> > To: XMail mailing list
> > Sent: Wednesday, April 02, 2003 11:31 AM
> > Subject: [xmail] help (fwd)
> >
> >
> >
> >
> > Can someone running XMail on Windows confirm this ? It is 
> true that that
> > domain "com4.com.br" could not exist on XMail on Windows, 
> but it should be
> > able to receive messages from such domain.
> > BTW, did I ever tell you that Windows *sucks* ? They have 
> developers that
> > after 20 years did not firuge it out that the string 
> "com4.com.br" is
> > different from the string "com4" !!
> >
> >
> >
> >
> > - Davide
> >
> >
> > -- Forwarded message --
> > Date: Wed, 2 Apr 2003 10:42:32 -0300
> > From: Marco A. Zago <[EMAIL PROTECTED]>
> > To: [EMAIL PROTECTED]
> > Subject: help
> >
> > Gentlemen, My domain of the InterNet is www.com4.com.br and comes
> perceiving
> > that I do not obtain to send email pra any supplier that 
> uses the xmail,
> for
> > that we perceive is that the xmail creates a folder with 
> the name of the
> > email, or either, the fold
> > er com4 nao can be created by windows.
> >
> >
> >
> > Marco Zago
> > Franca/Sp
> > Brazil
> > -
> > To unsubscribe from this list: send the line "unsubscribe xmail" in
> > the body of a message to [EMAIL PROTECTED]
> > For general help: send the line "help" in the body of a message to
> > [EMAIL PROTECTED]
> >
> > -
> > To unsubscribe from this list: send the line "unsubscribe xmail" in
> > the body of a message to [EMAIL PROTECTED]
> > For general help: send the line "help" in the body of a message to
> > [EMAIL PROTECTED]
> >
> >
> 
> -
> To unsubscribe from this list: send the line "unsubscribe xmail" in
> the body of a message to [EMAIL PROTECTED]
> For general help: send the line "help" in the body of a message to
> [EMAIL PROTECTED]
> 
> Incoming Mail scanned by the Webnetism MailWall - Mail Protection 24/7
> 
> ---
> AVG Incoming mail is certified Virus Free.
> Checked by AVG anti-virus system (http://www.grisoft.com).
> Version: 6.0.465 / Virus Database: 263 - Release Date: 25/03/2003
>  
> 

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.465 / Virus Database: 263 - Release Date: 25/03/2003
 

Outgoing Mail scanned by the Webnetism MailWall for viruses - Mail Protection 24/7
-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Re: help (fwd)

2003-04-02 Thread Rolf Boxenstreit

Sends ok.


- Original Message -
From: Davide Libenzi
To: XMail mailing list
Sent: Wednesday, April 02, 2003 11:47 AM
Subject: [xmail] Re: help (fwd)



On Wed, 2 Apr 2003, Brandon Wittenburg wrote:

>
> Davide Libenzi wrote:
>
> >Can someone running XMail on Windows confirm this ? It is true that that
> >domain "com4.com.br" could not exist on XMail on Windows, but it should
be
> >able to receive messages from such domain.
> >BTW, did I ever tell you that Windows *sucks* ? They have developers that
> >after 20 years did not firuge it out that the string "com4.com.br" is
> >different from the string "com4" !!
> >
> >
> Davide,
>
> +0 <[EMAIL PROTECTED]> XMail 1.10 (Win32/Ix86) CTRL
> Server; Wed, 02 Apr 2003 10:40:42 -0600
> rootpassword
> +0 OK
> domainadd   com4.com.br
> -00017 Unable to create directory
> domainlist
> +00100 OK
> "com4.com.br"
> ..
> quit
> +0 OK
> Connection closed by foreign host.
>
> So it is added to domains.tab, but windows is unable to create the
> directory under ./domains. Yes, windows *sucks*! But that is why all of
> my *real* XMail servers run in Linux and BSD. ;)

Could you try to simply send a message using <[EMAIL PROTECTED]> as a sender ?



- Davide

-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]

-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Re: help (fwd)

2003-04-02 Thread Brandon Wittenburg

>
>
>Could you try to simply send a message using <[EMAIL PROTECTED]> as a sender ?
>
>
>
>- Davide
>
>  
>
Davide,

220 <[EMAIL PROTECTED]> [XMail 1.10 (Win32/Ix86) ESMTP 
Server] service ready; Wed, 02 Apr 2003 10:59:24 -0600
helo brandon.futura.net
250 xmailserver.test
mail from:<[EMAIL PROTECTED]>
250 OK
rcpt to:<[EMAIL PROTECTED]>
250 OK
data
354 Start mail input; end with .
HELLO!
..
250 OK 
quit

The mail was recieved successfully.

Regards,

Brandon Wittenburg

-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Re: help (fwd)

2003-04-02 Thread David Byte

you just have got to love Microsoft... such genius and intelligence..

If you try and create the directory by hand you get "a FILE with this name
already exists"


David Byte
Owner, Byte Computer Services
[EMAIL PROTECTED]
ICQ# 50227527
918-230-2771

- Original Message -
From: "David Byte" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, April 02, 2003 10:57 AM
Subject: [xmail] Re: help (fwd)


>
> Yes, Very interesting.. especially since I can create other .com.country
> accounts.. (northcoastaccounting.com.au) and they work fine..
>
> David Byte
> Owner, Byte Computer Services
> [EMAIL PROTECTED]
> ICQ# 50227527
> 918-230-2771
>
> - Original Message -
> From: "Davide Libenzi" <[EMAIL PROTECTED]>
> To: "XMail mailing list" <[EMAIL PROTECTED]>
> Sent: Wednesday, April 02, 2003 10:47 AM
> Subject: [xmail] Re: help (fwd)
>
>
> >
> > On Wed, 2 Apr 2003, Brandon Wittenburg wrote:
> >
> > >
> > > Davide Libenzi wrote:
> > >
> > > >Can someone running XMail on Windows confirm this ? It is true that
> that
> > > >domain "com4.com.br" could not exist on XMail on Windows, but it
should
> be
> > > >able to receive messages from such domain.
> > > >BTW, did I ever tell you that Windows *sucks* ? They have developers
> that
> > > >after 20 years did not firuge it out that the string "com4.com.br" is
> > > >different from the string "com4" !!
> > > >
> > > >
> > > Davide,
> > >
> > > +0 <[EMAIL PROTECTED]> XMail 1.10 (Win32/Ix86) CTRL
> > > Server; Wed, 02 Apr 2003 10:40:42 -0600
> > > rootpassword
> > > +0 OK
> > > domainadd   com4.com.br
> > > -00017 Unable to create directory
> > > domainlist
> > > +00100 OK
> > > "com4.com.br"
> > > ..
> > > quit
> > > +0 OK
> > > Connection closed by foreign host.
> > >
> > > So it is added to domains.tab, but windows is unable to create the
> > > directory under ./domains. Yes, windows *sucks*! But that is why all
of
> > > my *real* XMail servers run in Linux and BSD. ;)
> >
> > Could you try to simply send a message using <[EMAIL PROTECTED]> as a
sender
> ?
> >
> >
> >
> > - Davide
> >
> > -
> > To unsubscribe from this list: send the line "unsubscribe xmail" in
> > the body of a message to [EMAIL PROTECTED]
> > For general help: send the line "help" in the body of a message to
> > [EMAIL PROTECTED]
> >
> >
>
> -
> To unsubscribe from this list: send the line "unsubscribe xmail" in
> the body of a message to [EMAIL PROTECTED]
> For general help: send the line "help" in the body of a message to
> [EMAIL PROTECTED]
>
>

-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Re: help (fwd)

2003-04-02 Thread David Byte

Yes, Very interesting.. especially since I can create other .com.country
accounts.. (northcoastaccounting.com.au) and they work fine..

David Byte
Owner, Byte Computer Services
[EMAIL PROTECTED]
ICQ# 50227527
918-230-2771

- Original Message -
From: "Davide Libenzi" <[EMAIL PROTECTED]>
To: "XMail mailing list" <[EMAIL PROTECTED]>
Sent: Wednesday, April 02, 2003 10:47 AM
Subject: [xmail] Re: help (fwd)


>
> On Wed, 2 Apr 2003, Brandon Wittenburg wrote:
>
> >
> > Davide Libenzi wrote:
> >
> > >Can someone running XMail on Windows confirm this ? It is true that
that
> > >domain "com4.com.br" could not exist on XMail on Windows, but it should
be
> > >able to receive messages from such domain.
> > >BTW, did I ever tell you that Windows *sucks* ? They have developers
that
> > >after 20 years did not firuge it out that the string "com4.com.br" is
> > >different from the string "com4" !!
> > >
> > >
> > Davide,
> >
> > +0 <[EMAIL PROTECTED]> XMail 1.10 (Win32/Ix86) CTRL
> > Server; Wed, 02 Apr 2003 10:40:42 -0600
> > rootpassword
> > +0 OK
> > domainadd   com4.com.br
> > -00017 Unable to create directory
> > domainlist
> > +00100 OK
> > "com4.com.br"
> > ..
> > quit
> > +0 OK
> > Connection closed by foreign host.
> >
> > So it is added to domains.tab, but windows is unable to create the
> > directory under ./domains. Yes, windows *sucks*! But that is why all of
> > my *real* XMail servers run in Linux and BSD. ;)
>
> Could you try to simply send a message using <[EMAIL PROTECTED]> as a sender
?
>
>
>
> - Davide
>
> -
> To unsubscribe from this list: send the line "unsubscribe xmail" in
> the body of a message to [EMAIL PROTECTED]
> For general help: send the line "help" in the body of a message to
> [EMAIL PROTECTED]
>
>

-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Re: help (fwd)

2003-04-02 Thread Rolf Boxenstreit

It  __is__ true!  Windows refuses to allow a directory with that name to be
created.

Thankfully my XMail is on Linux, I just played with it on a Win2K test
machine.

- Rolf


- Original Message -
From: Davide Libenzi
To: XMail mailing list
Sent: Wednesday, April 02, 2003 11:31 AM
Subject: [xmail] help (fwd)




Can someone running XMail on Windows confirm this ? It is true that that
domain "com4.com.br" could not exist on XMail on Windows, but it should be
able to receive messages from such domain.
BTW, did I ever tell you that Windows *sucks* ? They have developers that
after 20 years did not firuge it out that the string "com4.com.br" is
different from the string "com4" !!




- Davide


-- Forwarded message --
Date: Wed, 2 Apr 2003 10:42:32 -0300
From: Marco A. Zago <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: help

Gentlemen, My domain of the InterNet is www.com4.com.br and comes perceiving
that I do not obtain to send email pra any supplier that uses the xmail, for
that we perceive is that the xmail creates a folder with the name of the
email, or either, the fold
er com4 nao can be created by windows.



Marco Zago
Franca/Sp
Brazil
-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]

-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Re: help (fwd)

2003-04-02 Thread Brandon Wittenburg

Davide Libenzi wrote:

>Can someone running XMail on Windows confirm this ? It is true that that
>domain "com4.com.br" could not exist on XMail on Windows, but it should be
>able to receive messages from such domain.
>BTW, did I ever tell you that Windows *sucks* ? They have developers that
>after 20 years did not firuge it out that the string "com4.com.br" is
>different from the string "com4" !!
>  
>
Davide,

+0 <[EMAIL PROTECTED]> XMail 1.10 (Win32/Ix86) CTRL 
Server; Wed, 02 Apr 2003 10:40:42 -0600
rootpassword
+0 OK
domainadd   com4.com.br
-00017 Unable to create directory
domainlist
+00100 OK
"com4.com.br"
..
quit
+0 OK
Connection closed by foreign host.

So it is added to domains.tab, but windows is unable to create the 
directory under ./domains. Yes, windows *sucks*! But that is why all of 
my *real* XMail servers run in Linux and BSD. ;)

Regards,

Brandon Wittenburg


-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Re: (No Date: Wed, 2 Apr 2003 14:23:29 +0200

2003-04-02 Thread John Phillip Daly

yer, sorry about that.

been trying to sign up for ages.

damn outlook express.

anyways, if anyone could help with the below would be awesome.

http://members.lycos.co.uk/xmailforum/index.php?act=ST&f=1&t=611&s=9d055ba57
696b12aeebea6d71b76e917




- Original Message -
From: "Sönke Ruempler" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, April 02, 2003 1:23 PM
Subject: [xmail] Re: (No Date: Wed, 2 Apr 2003 14:23:29 +0200


>
> > Hi.
> > test email
> >
> > please ignore
>
> maybe you write a test message to ONE person, not to hundreds or thousands
>  :-)
>
> -
> To unsubscribe from this list: send the line "unsubscribe xmail" in
> the body of a message to [EMAIL PROTECTED]
> For general help: send the line "help" in the body of a message to
> [EMAIL PROTECTED]
>

-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Re: (No Date: Wed, 2 Apr 2003 14:23:29 +0200

2003-04-02 Thread Sönke Ruempler

> Hi.
> test email
>
> please ignore

maybe you write a test message to ONE person, not to hundreds or thousands
 :-)

-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail]

2003-04-02 Thread John Phillip Daly
Hi.
test email

please ignore

-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]