Re: aklug Digest V5 #91

From: Damien Hull <dhull@digitaloverload.net>
Date: Fri May 19 2006 - 16:36:08 AKDT

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

My mp3 server works just fine.

1. GCI
2. Apache
3. CentOS
4. Jinzora ( php mp3 software )

If your IP address changes you will have to point your browser to the
new address. Also, if you have any php applications you may have to
change the URL settings. Some php applications require the URL of the
site. If this changes ( your IP address ) the website won't work any more.

Hope this helps.

Tony wrote:
> Hi:
>
> Is anyone having problems with running their
> webserver. I run a web server that is headless and
> suddenly I am not able to access it anymore. My IP
> address also changed (it was never static) so I
> thought I ask. I think GCI did something to their
> network to disable http access.
>
> Tony
>
> --- aklug@aklug.org wrote:
>
>
>>aklug Digest Wed, 17 May 2006 Volume: 05 Issue: 091
>>
>>In This Issue:
>> Re: aklug Digest V5 #90
>> RE: Postfix now has support for sendmail's milter
>>protocol.
>> Presentation on SimplyMEPIS
>> Scary. Really scary
>> testing 1 2 3...
>>
>>
>
> ----------------------------------------------------------------------
>
>>Date: Wed, 17 May 2006 14:49:35 -0800
>>From: barsalou <barjunk@attglobal.net>
>>Subject: Re: aklug Digest V5 #90
>>
>>
>>Care to share this stuff with other milter users? :)
>>
>>Mike B.
>>
>>>Date: Wed, 17 May 2006 14:02:50 -0800
>>>From: Matthew Schumacher <schu@schu.net>
>>>Subject: Postfix now has support for sendmail's
>>
>>milter protocol.
>>
>>>>From the postfix mailing list:
>>>
>>>X-Bogosity: No, tests=bogofilter,
>>
>>spamicity=0.001616, version=0.92.8
>>
>>>
> http://archives.neohapsis.com/archives/postfix/2006-05/0750.html
>
>>>For those of you who don't know what milter is and
>>
>>why it's the greatest
>>
>>>thing since sliced bread take a look at the docs:
>>>
>>>http://www.milter.org/milter_api/index.html
>>>
>>>Also here is a link to a fantastic milter called
>>
>>mimdefang:
>>
>>>http://www.mimedefang.org
>>>
>>>Mimedefang is a milter that keeps a pool of perl
>>
>>children around to
>>
>>>filter email. Since this pool is always running
>>
>>there is virtually no
>>
>>>performance hit for filtering the message unless
>>
>>your waiting for ldap,
>>
>>>spamassassin, or some other external filters that
>>
>>mimedefang can call.
>>
>>>Here is a quick example of how powerful this is:
>>>
>>>This filter_recipient function in mimedefang:
>>>
>>
> =========================================================================
>
>>>sub filter_recipient {
>>>
>>> # set vals
>>> my ($recipient, $sender, $ip, $hostname, $first,
>>
>>$helo, $rcpt_mailer,
>>
>>>$rcpt_host, $rcpt_addr) = @_;
>>>
>>> # if the user is sending email to a list then
>>
>>check for auth
>>
>>> if( $sender !~ /.+\.net$/ ){
>>> return ('REJECT', 'Sorry, sender must come from
>>
>>a .net domain.');
>>
>>> }
>>>}
>>>
>>>
>>
> =========================================================================
>
>>>Washes the $sender though a quick regex, and
>>
>>rejects if the sender
>>
>>>doesn't end with .net:
>>>
>>>
>>
> =========================================================================
>
>>>220 testserver ESMTP Sendmail 8.13.6/8.13.6; Wed,
>>
>>17 May 2006 13:48:20 -0800
>>
>>>helo fred.com
>>>250 pleased to meet you
>>>mail from: fred@fred.com
>>>250 2.1.0 fred@fred.com... Sender ok
>>>rcpt to: user@domain.net
>>>554 5.7.1 Sorry, sender must come from a .net
>>
>>domain.
>>
>>>quit
>>>
>>
> =========================================================================
>
>>>As you can see, the ability of the mail system to
>>
>>call an external
>>
>>>filter via socket during the SMTP transaction,
>>
>>combined with a good
>>
>>>milter that lets you do things in perl, pretty
>>
>>much results in endless
>>
>>>flexibility. On one mail system I manage, I have
>>
>>mimedefang stripping
>>
>>>out winmail.dat attachments and re-attaching them
>>
>>with mime. Now I can
>>
>>>get attachments from outlook users. YAY!!!
>>>
>>>schu
>>>
>>
>>
>>
> ----------------------------------------------------------------
>
>>This message was sent using IMP, the Internet
>>Messaging Program.
>>
>>
>>
>>----- End forwarded message -----
>>
>>
>>
>
> ----------------------------------------------------------------
>
>>This message was sent using IMP, the Internet
>>Messaging Program.
>>
>>
>>------------------------------
>>
>>From: "Jared Armstrong"
>><jared.armstrong@hotmail.com>
>>Subject: RE: Postfix now has support for sendmail's
>>milter protocol.
>>Date: Wed, 17 May 2006 15:43:20 -0800
>>
>>Milter also lets you do some great things like
>>dynamic blacklisting,
>>stripping hazardous attachments, quarantining
>>potentially hazardous
>>attachments, greylisting, automatic boilerplate
>>attachment, automatic
>>encryption and decryption, policy adherence (volume,
>>source, destination,
>>size, content, attachments, headers, whatever, or
>>combinations thereof),
>>advanced re-addressing, etc. Also allows you to do
>>these things based on
>>time of day, day of week, etc. Tie your mail
>>transport agent into a
>>database like MySQL and you really see the power of
>>it.
>>
>>Really, the limit is your own imagination and needs.
>>
>>
>>>From: Matthew Schumacher <schu@schu.net>
>>>To: Alaska Linux Users Group <aklug@aklug.org>
>>>Subject: Postfix now has support for sendmail's
>>
>>milter protocol.
>>
>>>Date: Wed, 17 May 2006 14:02:50 -0800
>>>
>>
>>>From the postfix mailing list:
>>
>>http://archives.neohapsis.com/archives/postfix/2006-05/0750.html
>>
>>>For those of you who don't know what milter is and
>>
>>why it's the greatest
>>
>>>thing since sliced bread take a look at the docs:
>>>
>>>http://www.milter.org/milter_api/index.html
>>>
>>>Also here is a link to a fantastic milter called
>>
>>mimdefang:
>>
>>>http://www.mimedefang.org
>>>
>>>Mimedefang is a milter that keeps a pool of perl
>>
>>children around to
>>
>>>filter email. Since this pool is always running
>>
>>there is virtually no
>>
>>>performance hit for filtering the message unless
>>
>>your waiting for ldap,
>>
>>>spamassassin, or some other external filters that
>>
>>mimedefang can call.
>>
>>>Here is a quick example of how powerful this is:
>>>
>>>This filter_recipient function in mimedefang:
>>
>>=========================================================================
>>
>>>sub filter_recipient {
>>>
>>> # set vals
>>> my ($recipient, $sender, $ip, $hostname, $first,
>>
>>$helo, $rcpt_mailer,
>>
>>>$rcpt_host, $rcpt_addr) = @_;
>>>
>>> # if the user is sending email to a list then
>>
>>check for auth
>>
>>> if( $sender !~ /.+\.net$/ ){
>>> return ('REJECT', 'Sorry, sender must come
>>
>>from a .net domain.');
>>
>>> }
>>
> === message truncated ===
>
>
> __________________________________________________
> Do You Yahoo!?
> Tired of spam? Yahoo! Mail has the best spam protection around
> http://mail.yahoo.com
> ---------
> To unsubscribe, send email to <aklug-request@aklug.org>
> with 'unsubscribe' in the message body.
>
>
>

- --
You can get my public PGP key at https://keyserver.pgp.com

Digital Overload
http://www.digitaloverload.net

Keep your data safe by doing regular backups. At Digital Overload we use
a combination of DVD and hard drive backups. For off site storage we use
a safe-deposit box at the bank. All backups are encrypted.
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.7 (GNU/Linux)
Comment: Using GnuPG with Fedora - http://enigmail.mozdev.org

iD8DBQFEbmR3+rNhalK/8UURAhxRAJ4uohJZTCJf49E0/xNx3X2xlqnIeQCfbdPe
wkm9/HijFCAcgSZKBtpLHOA=
=mve7
-----END PGP SIGNATURE-----
---------
To unsubscribe, send email to <aklug-request@aklug.org>
with 'unsubscribe' in the message body.
Received on Fri May 19 16:37:08 2006

This archive was generated by hypermail 2.1.8 : Fri May 19 2006 - 16:37:08 AKDT