> I'm afraid not, I looked into it a little but management ended up
> deciding we would be using zxtm load balancers
> (http://www.zeus.com/products/zxtm/) which were better suited for us
> overall.

Vince,

With a little TrafficScript, you can do exactly this with ZXTM, so perhaps
management made a good choice =).  

Here's a simple TrafficScript rule I've used to connect POP3 connections to
two different groups of POP3 servers based on username:


$req = request.getLine();

if( string.regexmatch( $req, "USER ([^\\s]*)") ) {
   $user = $1;

   if( $user == "owen" ) {
      pool.use( "local pop servers" );
   } 

   if( $user == "owen.garrett" ) {
      pool.use( "gmail pop servers" );
   }

   # Otherwise, drop the connection
   connection.discard();
}


The 'gmail pop servers' pool is configured to use SSL to connect to gmail's
servers on port 995, so you can use this technique to bridge between plain
pop3 (port 110) on the client and SSL-wrapped connections on the server too.

Talk to Zeus' support team - they will be more than able and willing to help
you configure ZXTM with a bit of TrafficScript to do what you need...

Owen


-- 
View this message in context: 
http://www.nabble.com/Load-balance-for-POP3-tp18155594p18358709.html
Sent from the freebsd-questions mailing list archive at Nabble.com.

_______________________________________________
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Reply via email to