211 views
1 Star2 Stars3 Stars4 Stars5 Stars (4 votes, average: 3.75 out of 5)
Loading ... Loading ...

13.12.09

Playing with my little niece the other day

Posted in Blogroll, Fun Time, Photos, Random Thoughts at 1:30 pm by Liv About Liviu Tudor

What does the world look like through the eyes of a 1 year old?

img00039-20091210-1929 img00040-20091210-1929 img00041-20091210-1929

img00042-20091210-1929 img00043-20091210-1930 img00044-20091210-1930

Disclaimer

623 views
1 Star2 Stars3 Stars4 Stars5 Stars (5 votes, average: 4.40 out of 5)
Loading ... Loading ...

09.12.09

Santa’s Magical Kingdom

Posted in Blogroll, Fun Time, News, Photos at 2:37 am by Liv About Liviu Tudor

Taken this weekend with my little niece at Santa’s Magical Kingdom — I’ve never seen kids eyes open so wide :)

img00025-20091205-1402 img00026-20091205-1421 img00027-20091205-1421

img00028-20091205-1424 img00030-20091205-1513 img00032-20091205-1658

More on her website: www.Ilinca.net

Disclaimer

3,928 views
1 Star2 Stars3 Stars4 Stars5 Stars (6 votes, average: 4.67 out of 5)
Loading ... Loading ...

08.12.09

Debian Linux, exim4 and Outlook 2003 TLS/SSL Config

Posted in Blogroll, Tech at 5:17 pm by Liv About Liviu Tudor

The following might seem obvious for some of you but I felt the need to publish it as it took me ages to get exim4 and Outlook 2003 to work together with one of the domains I’ve just bought.

In brief, I’ve bought a new domain (call it example.com) and I went this time for a proper dedicated hosting (rather than shared hosting) — which meant I had a physical machine that I had to administer myself. I’ve chosen Debian Linux as the OS for it — for various reasons that are outside the scope of this post. I’ve chosen exim4 (more specifically exim4-daemon-heavy) as my MTA and decided to go for courier-imap (over SSL) to read emails.

Obviously I had to generate a self-signed certificate — and I found the instructions on http://wiki.Debian.org/SSLkeys very useful for this. Having set courier-imap-ssl up, Outlook was able to read straight away my emails over IMAPS (obviously you get a prompt informing you that the identify of the authority creating the certificate cannot be verified but that’s just a minor glitch :)

Having configured IMAP it was time to move onto configuring exim4 — and I needed to have exim accept email normally for my domain (example.com) and obviously prevent open relaying — so unless the email is intended for a user in the domain example.com then the user will have to be authenticated. Now that is very easily configured (in fact it’s present by default) in /etc/exim4/conf.d/acl/... (I use a split file configuration).  In order to enable TLS (on port 465) I have the following in my /etc/exim4/conf.d/main/000_localmacros:

daemon_smtp_ports = 25 : 465
tls_on_connect_ports = 465
MAIN_TLS_ENABLE = true

In terms of authenticators I had only 2 set up:

plain_server:
driver = plaintext
public_name = PLAIN
server_condition = "${if crypteq{$auth3}{${extract{1}{:}{${lookup{$auth2}lsearch{CONFDIR/passwd}
{$value}{*:*}}}}}{1}{0}}"
server_set_id = $auth2
server_prompts = :
.ifndef AUTH_SERVER_ALLOW_NOTLS_PASSWORDS
server_advertise_condition = ${if eq{$tls_cipher}{}{}{*}}
.endif
 
cram_md5_server:
driver = cram_md5
public_name = CRAM-MD5
server_secret = ${extract{2}{:}{${lookup{$auth1}lsearch{CONFDIR/passwd}{$value}fail}}}
server_set_id = $auth1

(all the others have been commented out)

Now this configuration worked just fine with the likes of Thunderbird (configured to authenticate both at receive and send email) and my messages were sent just fine. In Outlook though, I could only receive emails and any time I try to reply to any emails received (or simply just send a new email) exim throwed an error about relaying not being allowed. Which basically said to me that Outlook was not sending the authentication at all when sending emails. Having talked to Andreas Metzler (on the Pkg-exim4-users mailing list) it turns out that Outlook only does NOT support AUTH PLAIN and only supports the AUTH LOGIN method — so I had to add the following section in my authenticators section for exim:

plain_server:
driver = plaintext
public_name = PLAIN
server_condition = "${if crypteq{$auth3}{${extract{1}{:}{${lookup{$auth2}lsearch{CONFDIR/passwd}
{$value}{*:*}}}}}{1}{0}}"
server_set_id = $auth2
server_prompts = :
.ifndef AUTH_SERVER_ALLOW_NOTLS_PASSWORDS
server_advertise_condition = ${if eq{$tls_cipher}{}{}{*}}
.endif
 
cram_md5_server:
driver = cram_md5
public_name = CRAM-MD5
server_secret = ${extract{2}{:}{${lookup{$auth1}lsearch{CONFDIR/passwd}{$value}fail}}}
server_set_id = $auth1
login_server:
driver = plaintext
public_name = LOGIN
server_prompts = "Username:: : Password::"
server_condition = "${if crypteq{$auth2}{${extract{1}{:}{${lookup{$auth1}lsearch{CONFDIR/passwd}{$value}{*:*}}}}}{1}{0}}"
server_set_id = $auth1
.ifndef AUTH_SERVER_ALLOW_NOTLS_PASSWORDS
server_advertise_condition = ${if eq{$tls_cipher}{}{}{*}}
.endif

Having restarted exim4 all worked well! (Bear in mind that you do need to configure your Outlook to use port 465 for sending emails and also you need to configure it to authenticate on SMTP!)

While configuring my system I also found this link very helpful: http://pkg-exim4.alioth.Debian.org/README/README.Debian.HTML — and obviously some of the mailing list archives which can be reached from this link.

Disclaimer

450 views
1 Star2 Stars3 Stars4 Stars5 Stars (5 votes, average: 5.00 out of 5)
Loading ... Loading ...

04.12.09

New Sponsor for the Phantoms RFC!

Posted in Blogroll, News, Photos, Rugby at 2:43 pm by Liv About Liviu Tudor

My company, 3B Software Ltd has just signed up a sponsorship deal with the Phantoms for the current season (2009-2010) so for the remainder of the season I am (well, through 3B Software Ltd you understand ;) the official sponsor of the Phantoms woohoo!

Here’s a preview of the new kit with the 3B Software logo:

New Phantoms RFC Kit with the 3B Software Ltd logo embroided

Disclaimer

« Previous Page « Previous Page Next entries »