Posts

Yard Sale: Nexus 6

· Google, Hardware

Nexus 6

  • Details
  • New device from end of September (used for one month; I’ve owned a N6 for a longer time, but due to a battery problem, Google swapped it for a brand new device; then I swapped to a Nexus 6P)
  • Midnight Blue edition
  • 64Gb
  • 4G and stuff (side note: reception & signal is a million times better than a Nexus 5)
  • You do of course receive the Moto TurboPower charger with it
  • Bought via Google Play store (comes with warranty, support, etc), original phone bought July 2015, so plenty of warranty left
  • No scratches or anything
  • Comes with Android 6
  • Selling because I own a Nexus 6P
  • Price: offer
  • 2dehands
Includes original packaging/boxes.

Email: yeri+sale@tiete.be

Yard Sale - Free pick up

· Hardware, Networking

Free pick up in Grimbergen, Diegem or Brussels North.

Email: yeri+sale@tiete.be

Everything has been stored for a while in my garage and is untested.

Dual P3 1u server

IMG_20160716_110703  IMG_20160716_110708  IMG_20160716_110720
  • 1u dual Pentium 3 1Ghz server
  • 2x 72.8Gb 10k rpm SCSI (one probably died)
  • 1280Mb RAM
  • Served for years as mail & web server in Amsterdam datacenter, got it myself 2nd hand where it served in a Belgian datacenter (IIRC)
  • 2dehands

Intel Pentium D desktop server

IMG_20160716_110005  IMG_20160716_110011  IMG_20160716_110153
  • Pentium D CPU (32bit), don't remember any more specs
  • Seems to have 4Gb of RAM (untested)
  • 2x 160Gb SATA disk
  • 2dehands

AMD64 Athlon desktop

IMG_20160716_110055
  • No disks
  • Seems to have 1GB of RAM (untested)
  • Athlon64 something. You know. One of those first 64 bit CPUs when AMD was still awesome. :)
  • 2dehands

APC Smart UPS

IMG_20160716_110640  IMG_20160716_110646
  • 4u rack mounted UPS
  • "SmartUPS 1000"
  • With the right cables (not provided) I believe there was a managed console/interface
  • Comes with batteries but I'm 99% sure the batteries are dead by now
  • it's freaking heavy
  • Awesome UPS that proved its use back in the days
  • 2dehands

Postfix & Courier & Letsencrypt

· Linux, Networking, Software, www

First of all, create your certificates (the regular way). I created one with multiple domains: webmail.rootspirit.com, mail.rootspirit.com, smtp.rootspirit.com.

In my case, as the mailserver and webserver are behind a proxy (postfix, imap, Roundcube Webmail), I create the certificate on the proxy (nginx) and scp the cert to the mail server. All this is automated with a tiny script.

For Postfix, edit main.cf and change/edit/add these lines (check the right path too!):

smtpd_use_tls = yes
smtpd_tls_key_file = /etc/ssl/letsencrypt/webmail.privkey.pem
smtpd_tls_cert_file = /etc/ssl/letsencrypt/webmail.fullchain.pem
smtpd_tls_received_header = yes
smtpd_tls_session_cache_timeout = 3600s
tls_random_exchange_name = /var/run/prng_exch
tls_random_source = dev:/dev/urandom
smtpd_tls_exclude_ciphers = aNULL, eNULL, EXPORT, DES, RC4, MD5, PSK, aECDH, EDH-DSS-DES-CBC3-SHA, EDH-RSA-DES-CDB3-SHA, KRB5-DES, CBC3-SHA
smtpd_tls_dh1024_param_file = /etc/ssl/postfix/dhparams.pem
smtpd_tls_auth_only = yes
smtp_tls_security_level = may
smtpd_use_tls=yes
smtpd_tls_security_level=may
smtpd_tls_session_cache_database = btree:${data_directory}/smtpd_scache
smtp_tls_session_cache_database = btree:${data_directory}/smtp_scache
smtpd_tls_loglevel=1
smtp_tls_loglevel=1

And restart postfix: /etc/init.d/postfix restart