@bobnoordam

Author: bobnoordam

Postfix queue management

Queue management for postfix is done with the postsuper command, which you can use to delete mail in vareious scenario’s. #1 Remove specific mail Run the mailq command to list pending mail, en get the id, next you can delete a specific mail with: #2 Remove ALL mail #3 Remove all deferred (stalled) mail, without […]

UFW Firewall cheat-sheet

What do we want to archive Install and activate the Uncomplicated firewall (UFW) and list some basic commands for adding and removing rules Requirements Debian, Ubuntu, etc How do we get there Installation: Default rules The following defaults will allow all outgoing traffic, and block all incoming traffic, which will make for a nice set […]

Firefox 75 : Remove horrendous zoom effect in address bar

In a renewed attempt to get rid of users, Firefox added a horrendous zoom effect to the address bar every time you click in it. Here is how to restore the behaviour to a normal box: Type about:config in the address bar to access advanced settings change browser.urlbar.openViewOnFocus to FALSE change browser.urlbar.update1 to FALSE

Checklist: install and configure MySQL in Ubuntu 18.04 LTS

Update the repository index: # apt-get update Install the MySQL Server: # apt-get install mysql-server Verify status and installation: # mysql –version Secure local installation: # mysql_secure_installation (at the very least remove anymous access and sample stuff) Start mysql shell: # sudo mysql Verify authentication for root: > SELECT user,authentication_string,plugin,host FROM mysql.user; If set to […]

Next Page » « Previous Page