A PCRE internal error occured. This might be caused by a faulty plugin

====== Differences ====== This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
packages:postfix [2014/02/07 04:54]
admin [Relay Authentification]
packages:postfix [2014/02/07 05:00] (current)
admin [Test Postfix]
Line 78: Line 78:
 Done. You can use "​mutt"​ to send emails outside. Check /​var/​log/​mail.log to see if everything is working. Done. You can use "​mutt"​ to send emails outside. Check /​var/​log/​mail.log to see if everything is working.
 ===== Test Postfix ===== ===== Test Postfix =====
 +You should nbow be able to send mail to the outside world using Postfix:
 +<​code>​
 +telnet localhost 25
 +</​code>​
 +
 +You should see: 
 +<​code>​
 +Trying 127.0.0.1...
 +Connected to localhost.localdomain.
 +Escape character is '​^]'​.
 +220 server1.example.com ESMTP Postfix (Debian/​GNU)
 +</​code>​
 +
 +Send an email to a test recipient:
 +<​code>​
 +mail from:<​you@youremail.com>​
 +rcpt to:<​user@example.com>​
 +data
 +To: user@example.com
 +From: you@youremail.com
 +Subject: Hey my first email
 +This is my first email on debian postfix after installing configuring it.
 +It was easy.
 +</​code>​
 +
 +To end data hit enter, type in a dot, and hit enter again: ​
 +<​code>​
 +.
 +</​code>​
 +
 +Quit the session:
 +<​code>​
 +quit
 +</​code>​