The tls tag has no wiki summary.
0
votes
0answers
23 views
Postfix address resolver + loopback to root problem
Ubuntu Linux 12.04.1 With LAMP stack.
The goal is to setup a web server that can send mail via the PHP mail() function, which uses localhost. The mail must then be relayed to an ISP domain ...
0
votes
1answer
64 views
How do I use implicit FTP over TLS
using any FTP client (I'm on Ubuntu 12.04 and tried using lftp), I want to be able to make an implicit TLS connection on a FTP server, but I can't quite manage to successfully connect(All I get is : ...
2
votes
1answer
220 views
How to make ldapsearch working on SLES over tls using certificate?
We need to connect our php script to LDAP over tls using a certificate. LDAP connection works nicely without tls. More details here ...
0
votes
0answers
124 views
mutt SMTP TLS error sending mail
When I try to send a mail, I get the following error:
gnutls_handshake: An unexpected TLS packet was received.
This is my .muttrc (myname, myaddress and mymail are placeholders):
# Automatically ...
1
vote
0answers
124 views
Sendmail with TLS support changes FROM: address
I have multiple domains on one server and when sending email to
server, which supports TLS, server changes FROM field to default
domain ($j).
What should i do (in .mc level please) to remain primary ...
1
vote
1answer
151 views
How to display server's TLS certicicate details in terminal?
Having TLS certificate in local file, I can display its details using syntax like:
openssl x509 -text -noout -in cert_filename
Is there any way to display remote SMTP/POP3/HTTP server's TLS ...
5
votes
1answer
417 views
TLS over unix pipe
Can I use TLS/SSL over Unix pipe with Unix command line?
I want the equivalent of
$ mkfifo /tmp/spipe
$ echo a|openssl s_server -acceptFifo /tmp/spipe &
[1] 25563
$ openssl s_client ...