From: =?ISO-8859-1?Q?Wilberth_P=E9rez?= on
someone knows how to run postfix on another port in solaris ?


--
--------------------------------------------------------
LCC Wilberth de Jes�s P�rez Segura CCSA- Administraci�n de Servicios y Seguridad de las TI
Correo: wilberth.perez(a)uady.mx
Universidad Aut�noma de Yucat�n
Secretar�a General
Coordinaci�n Administrativa de Tecnolog�as de Informaci�n
RIUADY
C-59 x Av. Itz�es (999)923-74-28 Ext. 1117
M�rida, Yucat�n, M�xico 2010
--------------------------------------------------------

From: Erik Logtenberg on
On 03/15/2010 08:44 PM, Wilberth P�rez wrote:
> someone knows how to run postfix on another port in solaris ?

If by "port" you mean "the port smtpd listens on" (there are some more
ports and sockets that postfix uses for different tasks), then take a
look at your master.cf file, and change:

smtp inet n - n - - smtpd

into:

10025 inet n - n - - smtpd

to have your smtpd process listen on tcp/10025 instead of tcp/25.
Also see http://www.postfix.org/master.5.html for more details.

-- Erik