Update gcom tip (comgt), add simple mailserver with python v0.4.20
authorMichael Prokop <mika@grml.org>
Tue, 27 Oct 2009 20:29:40 +0000 (21:29 +0100)
committerMichael Prokop <mika@grml.org>
Tue, 27 Oct 2009 20:29:40 +0000 (21:29 +0100)
debian/changelog
grml_tips

index 50d1ea4..f4f65b2 100644 (file)
@@ -1,3 +1,10 @@
+grml-tips (0.4.20) unstable; urgency=low
+
+  * Add 'Simple mailserver with python'.
+  * Update gcom tip regarding switch to comgt (thanks, Ralf Moll).
+
+ -- Michael Prokop <mika@grml.org>  Tue, 27 Oct 2009 21:28:13 +0100
+
 grml-tips (0.4.19) unstable; urgency=low
 
   * Add 'Find packages not available from any active apt repository'.
index f90532f..c71c185 100644 (file)
--- a/grml_tips
+++ b/grml_tips
@@ -1288,19 +1288,22 @@ Use a Vodafone 3G Datacard (UMTS) with Linux:
 Plug in your vodafone card and check in syslog whether the appropriate
 (probably /dev/ttyUSB0 or /dev/noz0) has been created. If so run:
 
-# gcom -d $DEVICE
+# comgt -d $DEVICE
 # wvdial --config /etc/wvdial.conf.umts $PROFILE
 
 Usage examples:
-# gcom -d /dev/ttyUSB0
+# comgt -d /dev/ttyUSB0
 # wvdial --config /etc/wvdial.conf.umts a1usb
 
-# gcom -d /dev/noz0
+# comgt -d /dev/noz0
 # wvdial --config /etc/wvdial.conf.umts tmnozomi
 
-# gcom -d /dev/noz0
+# comgt -d /dev/noz0
 # wvdial --config /etc/wvdial.conf.umts dreiusb
 
+# comgt -d /dev/ttyACM0
+# wvdial --config /etc/wvdial.conf.umts yesss
+
 If you receive invalid DNS nameservers when connecting, like:
 
 [...]
@@ -1326,7 +1329,7 @@ Bus 004 Device 008: ID 1199:6813 Sierra Wireless, Inc.
 
 To get a list of available providers execute:
 
-# gcom -s -d /dev/ttyUSB0 /usr/share/doc/gcom/examples/operator
+# comgt -s -d /dev/ttyUSB0 /etc/comgt/operator
 -- 
 hdparm - get/set hard disk parameters
 
@@ -3169,3 +3172,7 @@ Find packages not available from any active apt repository:
 
 % apt-show-versions | awk '/No available version in archive/{print $1}'
 -- 
+Simple mailserver with python:
+
+% python -m smtpd -n -c DebuggingServer localhost:1025
+--