hMailServer - Free Email Server for Microsoft Windows
If you want to set up a Microsoft Windows system as an email server,
there is a free, full-featured email server program available called
hMailServer. It supports
IMAP,
POP3, and
SMTP.
[ More Info ]
[/network/email]
permanent link
How to Stop Vim from AutoIndenting in Files
I use
Vim for editing files on
Windows systems. I edit HTML files with it, but find its habit
of automatically indenting lines in those files based on the tags used
annoying rather than helpful. Fortunately, that behavior can be turned
off. To so so, edit the
_vimrc
file, which is in the
directory where you installed Vim, e.g.
C:\Program Files\Vim
.
For HTML files, i.e. any file with an extension of
.htm
or
.html
, you can add the following two lines to stop the
autoindentation. Close Vim, add the lines, then reopen Vim and you should
no longer have the autoindenation in those files.
autocmd BufEnter *.html setlocal indentexpr=
autocmd BufEnter *.htm setlocal indentexpr=
You can enter similar lines to stop autoindentation in other files.
References:
-
How
to stop auto indenting
Vim Tips Wiki
[/software/editors/vi]
permanent link
Configuring a NetScreen Firewall for an Internal SMTP Server
The steps
here
can be taken to configure a NetScreen firewall, such as the NetScreen-5GT
or NetScreen-5XP firewalls, to allow email to be sent from or to an
email server sitting behind the firewall, i.e. on the trusted side of the
firewall, when the firewall is performing
NAT.
[/security/firewalls/netscreen]
permanent link