postfix – mailbox size limit and message size limit

WARNING: Postfix (https://de.postfix.org/httpmirror/) is my MTA of choice. I use it for my mailserver due to its simplicity , security and sendmail-compatible (the widely used smtp in the world but not as secure). It is also extensible by plugging other servers for various purposes (antispam, antivirus,database etc). I had one problem with file attachment larger … Weiterlesen

What is the character set and collation of that MySQL Database

It does not happen often, but every once in a while you are helping someone debug his code. You run across his Database and need to double check NOW how he created that thing. To get this information you need to check: USE db_name; SELECT @@character_set_databse, @@collation_database; Alternatively, to display the values without changing the … Weiterlesen