Kategoriarkiv: Old Base

TLD Oversigt

http://www.norid.no/domenenavnbaser/domreg.html

Udgivet i Knowledge Base, Links, Old Base | Skriv en kommentar

SPF Guide

Copyright : http://www.gratisdns.dk/SPFdraft.txt Hvordan bruger jeg SMTP + SPF? 1) Hvad er SMTP? SMTP er måden vi udveksler post fra server til server, også kaldet en protokol. Det er ikke så vigtigt at du forstår hvordan protokollen virker, det vigtige … Læs resten

Udgivet i Knowledge Base, Networking, Old Base | Skriv en kommentar

arraystore.php

<? # arraystore.php – Copyright(c) 2005 by Mikkel C.M.Christensen # # Stores and retrieves arrays of the following format from plaintextfiles: # $array = array( array (“”,””), # array (“”,””), # array (“”,””)); # # The char “|” are used … Læs resten

Udgivet i Knowledge Base, Linux, Old Base, Programmering | Skriv en kommentar

Big Qmail Clusters

http://sourceforge.net/docman/display_doc.php?docid=18802&group_id=85937

Udgivet i Knowledge Base, Old Base | Skriv en kommentar

mod_proxy config

<VirtualHost thor.btworld.dk> ServerName thor.btworld.dk DocumentRoot /var/www/thor_redirect/htdocs ProxyPass /samurize/ http://thor.btworld.dk/samurize/ ProxyRequests Off </VirtualHost>

Udgivet i Apache, Knowledge Base, Linux, Old Base | Skriv en kommentar

Billedredigering med imagemagick

Rotate pictures? mogrify -rotate 90/180 */001.jpg Resizing picture mogrify -size 120×120 -resize 120×120 +profile “*” *.jpg

Udgivet i Knowledge Base, Linux, Old Base | Skriv en kommentar

putty tunnels from system tray

This is how to connect some ssh forwarded ports without having any unused putty windows in the taskbar. First download and install putty and configure pageant to start with windows. (use the installer package, not the standalone putty.exe) Make som … Læs resten

Udgivet i Knowledge Base, Old Base, Programmering | Skriv en kommentar

C# write XML to stream with XmlDocument

Stream outputStream = new MemoryStream(); XmlDocument doc = new XmlDocument(); XmlElement root = doc.CreateElement(“packet”); XmlElement type = doc.CreateAttribute(“type”); if (this.request) type.Value = “request”; else type.Value = “response”; root.AppendChild(type); XmlElement callElement = doc.CreateElement(“call”); XmlAttribute funcAttr = doc.CreateAttribute(“func”); funcAttr.Value = this.func; callElement.AppendChild(funcAttr); … Læs resten

Udgivet i Knowledge Base, Old Base, Programmering | Skriv en kommentar

how to edit strings with mysql

Mysql replace is nice UPDATE `users` SET homedir = REPLACE(homedir, ‘/home/daemons’, ‘/home/vmail/’), maildir = REPLACE(maildir, ‘/home/daemons’, ‘/home/vmail/’);

Udgivet i Knowledge Base, Old Base | Skriv en kommentar

how to add a user to a group

This is a nice way to add a user to a new group, from any script or other non-interactive metod: usermod -G $(id -nG root | sed -e “s/ /,/g”),vmail root

Udgivet i Knowledge Base, Linux, Old Base | Skriv en kommentar