https://linuxconfig.org/how-to-setup-a-vpn-with-openvpn-on-debian-9-stretch-linux Add a client: # cd /etc/openvpn/certs # source ./vars # ./build-key clientname ##(Accept rational defaults, change FF_VPN_Server, DO NOT enter challenge password or optional Company Name) # cd/etc/openvpn/client # mkdir clientname # cp client.conf clientname/clientname.conf ##(Copy client.conf to client dir renamed appropriately)
-F : Deleting (flushing) all the rules. -X : Delete chain. -t table_name : Select table (called nat or mangle) and delete/flush rules. -P : Set the default policy (such as DROP, REJECT, or ACCEPT).
# Directory where to look up mail plugins. mail_plugin_dir = /usr/lib/dovecot/modules
# Space separated list of plugins to load for all services. Plugins specific to # IMAP, LDA, etc. are added to this list in their own .conf files. #mail_plugins = mail_plugins = acl protocol imap { mail_plugins = $mail_plugins imap_acl }
Upgrading to Drupal 6.2 leaves something to be desired as far as the image module goes.
It's bad enough for the average enthusiast that uploading images is not a core feature... but here's the fix that I found posted at http://drupal.org/node/219808
insert into image select upload.nid as nid , files.fid as fid , filename as image_size from upload, files where upload.fid = files.fid and files.filemime like "image/%";
Embed a picture: <img src="http://url_name/img_name" border="0" align="right" padding-left="4px" /> Link to a URL: <a href="http://url_name" target="_blank">Link name</a>
http://www.wildcoast.com/html_tips . . . this entry is mainly just a test to see if filtered html is automatically linking URL entries. Which it wasn't. Hence the above torture.