Estou unsando o squid com autenticacao d usuario no pop com o popauth.py ele ta pedindo o usurio e tudo certo, mas tenho q ficar digitando o e-mail completo XXX@XXXX.XXX.XXX teria como configurar para mim estar digitando apenas XXX sem o @XXXX.XXX.XXX abaixo estou mandando o script do popauth.py, abraco agradeco desde ja.
------------------------------------------------------------------------------------
#!/usr/bin/env python
from poplib import POP3
import sys
#POP server against which we authenticate
server="XXX.XX.XXX.XXX"
#Port number for POP server. Usually 110
port=110
#Below here you shouldn't need to edit anything
while 1:
#Read user and password from stdin, remove the newline, split at the space
#and assign to the user and password variables
line=sys.stdin.readline()[:-1]
[user,password]=line.split()
#Connect to the POP server
p=POP3(server,port)
#Try to authenticate. If it doesn't work, it throws an exception
try:
p.user(user)
p.pass_(password)
except:
#If it threw an exception, log in cache.log the ayth booboo
sys.stderr.write("ERR authenticating %sn"%user)
#Then deny access
sys.stdout.write("ERRn")
#IMPORTANT!!!!!!!!!!!! Flush stdout
sys.stdout.flush()
continue
#If it didn't throw exceptions, that means it authenticated
#Log success to cache.log
sys.stderr.write("OK authenticated %sn"%user)
#Then allow access
sys.stdout.write("OKn")
sys.stdout.flush()
------------------------------------------------------------------------------------
Gentoo binário em 2026: UEFI, LUKS, Btrfs e Systemd
Trabalhando Nativamente com Logs no Linux
Jogando Daikatana (Steam) com Patch 1.3 via Luxtorpeda no Linux
LazyDocker – Interface de Usuário em Tempo Real para o Docker
Instalando fontes via script no Nautilus Scripts no Gnome do Debian 13
Substituindo o NetworkManager pelo iwd (e iwgtk)
Em qual Arquivo colocar as Configurações
GLPI Não atualiza Inventario (0)
Instalar Linux em notebook Sony Vaio VPCEG13EB (1)









