Squid einrichten

Hallo,

wie kann ich Squid so einrichten, dass Mozilla oder Outlook E-Mails abrufen können?

Den port 110 habe ich bereits in den acl freigegeben und den zugriff erlaubt. Ich füge einfach mal eine Kopie dazu:

acl all src 0.0.0.0/0.0.0.0
acl localnet src 192.1.1.26/255.255.255.0
acl localnet2 src 192.1.1.24/255.255.255.0
acl genius src 192.1.1.26

acl manager proto cache_object
acl localhost src 127.0.0.1/255.255.255.255
acl SSL_ports port 443 563
acl Safe_ports port 80 # http
acl Safe_ports port 21 # ftp
acl Safe_ports port 443 563 # https, snews
acl Safe_ports port 70 # gopher
acl Safe_ports port 210 # wais
acl Safe_ports port 1025-65535 # unregistered ports
acl Safe_ports port 280 # http-mgmt
acl Safe_ports port 488 # gss-http
acl Safe_ports port 591 # filemaker
acl Safe_ports port 631 # cups
acl Safe_ports port 777 # multiling http
acl Safe_ports port 901 # SWAT
acl Safe_ports port 110 # POP-Abruf
acl purge method PURGE
acl CONNECT method CONNECT

http_access allow manager localhost
http_access allow purge localhost
http_access allow CONNECT SSL_ports
http_access allow CONNECT Safe_ports
http_access allow localhost
http_access allow localnet
http_access allow localnet2
http_access allow genius
http_access allow all
http_access allow CONNECT genius

Hallo Alexander,

squid ist ein reiner Http-Proxy, um POP3/SMTP nutzen zu können, musst dir entweder einen Proxy dafür suchen (ich wüsste jetzt azf anhieb keinen), oder was einfacher ist, mit NAT (Masquarading) arbeiten.

Klaus

Hallo,

wie kann ich Squid so einrichten, dass Mozilla oder Outlook
E-Mails abrufen können?

Den port 110 habe ich bereits in den acl freigegeben und den
zugriff erlaubt. Ich füge einfach mal eine Kopie dazu:

Hola!

Squid als Mailproxy ist nicht möglich.
Es ist aber relativ einfach, einen einzurichten. Versuchs doch mal mit netcat. So Kommste ohne SMTP- und POP/ IMAP-Server auf Deinem Proxy aus…

Squid als Mailproxy ist nicht möglich.
Es ist aber relativ einfach, einen einzurichten. Versuchs doch
mal mit netcat.

Duh!

Mir deucht, netcat sei eine schlechte Wahl

Sebastian