[xmail] Re: password synchronization

2003-06-04 Thread Loris Chiocca
I guess what I am trying to get across is that in an environment where there is a win2k domain and exchange 2000, the user only has to know one password for them and if they change their password via ctrl+alt+del on windows systems or via a password policy, its is synchronzied with mail.

[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-

[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

[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

[xmail] Re: help (fwd)

2003-04-02 Thread Loris Chiocca
And just to proove it: #include windows.h #include winbase.h 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,

[xmail] IMAP

2003-03-25 Thread Loris Chiocca
Hi Davide If I was in the middle of a temporal cold war [:)] to which date would I have to transport myself to get XMail 2 with IMAP support? [*bigsmile*] Do you need help of any kind with the implementation? It's just that I'm keen on getting XMail and IMAP do some nice stuff together. Greets

[xmail] new feature?

2003-03-25 Thread Loris Chiocca
Hi all I just noticed this new information in the xmail spool files (SIZE). Is this a new feature or a bug in the 1.14? In the 1.11 version this didn't happen. mailserver S2E9CD9A2ED MAIL FROM:[EMAIL PROTECTED] SIZE=2535 RCPT TO:[EMAIL PROTECTED] MAIL-DATA Greets Loris - To unsubscribe from

[xmail] Re: Remote Mail Store

2003-03-18 Thread Loris Chiocca
ex. foobar.com mailserver MailRoot/domains/foobar.com - foobar.com would be a shortcut named foobar.com to \\remote-name\foobar.com or \\remote-name\some-share\foobar.com its not nessary to map the drive. I can't say this will definetly work as I've never tried it, but I don't see

[xmail] Re: Spamassassin

2003-03-18 Thread Loris Chiocca
To install SpamAssassin on WinNT use the following instructions: - http://www.openhandhome.com/howtosa.html - get inspiration for my own vb script on how to run it from xmail or (alternativly) make you own script Have Fun Loris p.s.: Script file is UU-Encoded begin 644 SpamAssassin.vbs

[xmail] Re: Filters

2003-03-11 Thread Loris Chiocca
Here's a extract of one of my tab files: c:\MailRoot\filters\backup\backup.bat @@FILE@@MSGID CSCRIPT.EXE C:\MailRoot\filters\nospam\nospam.vbs @@MSGID @@FILE @@FROM@@RCPT CSCRIPT.EXE C:\MailRoot\filters\SpamAssassin\SpamAssassin.vbs @@MSGID @@FILE10@@RRCPT

[xmail] Re: how to turn off relay in xmail?

2003-03-07 Thread Loris Chiocca
Here's what I've got in my smtpreleay.tab. I wouldn't remove everything. And don't forget to restart the server just in case: [smtprelay.tab] 192.168.42.0 255.255.255.0 127.0.0.0 255.0.0.0 First line is for my local network to allow relaying :) and second is just to allow the local

[xmail] Re: Question on suitability of XMail

2003-03-05 Thread Loris Chiocca
I'd say it would work. But if you really want the big boss to answer (=Davide) you'll have to wait something like 10 hours. Greets Loris -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Steven Peck Sent: Mittwoch, 5. Marz 2003 07:50 To: [EMAIL

[xmail] Re: Spam

2003-02-27 Thread Loris Chiocca
I meant check to make on open relay(other mail server) in the Xmail server. Did you look at CustMapsList ? I think he means something more like: - connect to the IP address that is sending me something - if no connection on the SMTP port can be done - exit - try to send the same mail as

[xmail] Re: Error with QMail

2003-02-25 Thread Loris Chiocca
I'm almost certain for _anyone_ to understand the problem you would need to post the message. And don't forget to encode the message first or else all LF CR will get lost. My proposition: ZIP the message - UUEncode it - post the encoded text in here. Regards, Loris -Original Message-

[xmail] Re: Future XMail Possibilities

2003-02-22 Thread Loris Chiocca
1. last time that a user has logged onto a server 2. CurrentSessions and CloseSession IMHO a nice-to-have feature but not essential. 3. startup command-line parameters into a .TAB file YES. That's also a thing I wanted to mention, but didn't beacause Davide would probably have killed me :)

[xmail] Re: How to limit msg size?

2003-02-22 Thread Loris Chiocca
Are you using the Z permission or not? Just in case: Z disable mail size checking (bypassing SERVER.TAB and USER.TAB variable) Maybe this helps Greets Loris -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Dan Stefan Sent: Samstag, 22. Februar 2003

[xmail] Re: Adding another filter

2003-02-21 Thread Loris Chiocca
Rotate hours == 24 * X Quite right... But... :) X is a variable (can be anything from 28..31). And what if the log file name doesn't suite my needs. I don't know, maybe I want to call it something like SMTP-MM-DD.LOG might be useful if it was configurable. But I understand, that if I'm the

[xmail] Re: Adding another filter

2003-02-21 Thread Loris Chiocca
What about my first comment on adding a custom filter list for frozen messages? Greets 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: Adding another filter

2003-02-21 Thread Loris Chiocca
another filter On Sat, 22 Feb 2003, Loris Chiocca wrote: What about my first comment on adding a custom filter list for frozen messages? Why ? - 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