Skip to content

Instantly share code, notes, and snippets.

View MADxingjin's full-sized avatar

MADxingjin MADxingjin

  • Freelancer
  • Spaceeeeeeee!
  • 13:06 (UTC +08:00)
View GitHub Profile
@MADxingjin
MADxingjin / AvatarGenerator
Created August 31, 2021 12:32 — forked from craigomatic/AvatarGenerator
Simple text based avatar generator for C#
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Drawing.Imaging;
using System.Drawing.Text;
using System.IO;
namespace craigomatic.sample
{
@MADxingjin
MADxingjin / Email Server (Linux, Unix, Mac).md
Created July 9, 2021 08:31 — forked from raelgc/Email Server (Linux, Unix, Mac).md
Setup a Local Only SMTP Email Server (Linux, Unix, Mac)

Setup a Local Only SMTP Email Server (Linux, Unix, Mac)

1 - Point localhost.com to your machine

Most of programs will not accept an email using just @localhost as domain. So, edit /etc/hosts file to make the domain localhost.com point to your machine, including this content to the file:

127.0.0.1 localhost.com

2 - Install Postfix