Kontakt
Software- und Internetsupport Schauer
Dorfstraße 61/23
A-6580 St.Anton am Arlberg
Tel.: +43 650 4304414
Diese E-Mail Adresse ist gegen Spam Bots geschützt, Sie müssen Javascript aktivieren, damit Sie es sehen können  
 
HOTSPOT LOGIN

Login to Hotspot 

Login to Hotspot

Sections
Suchen
Blog
Postfix mit SMTP-Auth für ausgehende Verbindungen PDF Drucken E-Mail
Geschrieben von Administrator   
Tuesday, 20. March 2007
Server verschickt Mail über Smarthost, aber Smarthost lässt nur SMTP-Auth zu. So aktiviert man das in Postfix unter Debian Sarge:
1.) apt-get install postfix-tls libsasl2-modules
2.) Die /etc/postfix/main.cf anpassen:
relayhost = mail.domain.de
...
smtp_sasl_auth_enable = yes
smtp_sasl_password_maps = hash:/etc/postfix/sasl_passwd
smtp_sasl_security_options = noanonymous

3.) Den für SMTP-Auth zu verwendenden User angeben:
echo "mail.domain.de user:password" >> /etc/postfix/sasl_passwd
postmap /etc/postfix/sasl_passwd
/etc/init.d/postfix restart

Nun sollte der Versand über SMTP-Auth mit Smarthost funktionieren. Mehr Infos hier und hier.
 
Internetgateway unter Windows XP entfernen PDF Drucken E-Mail
Geschrieben von Administrator   
Wednesday, 7. March 2007
Windows XP hat die nette Eigenschaft einen so genannten Internetgateway automatisch einzurichten und somit ab und zu (vielleicht sogar öfters) Probleme zu verursachen.
weiter …
 
Using UltraVNC SC on Mac OS X tiger PDF Drucken E-Mail
Geschrieben von Josef   
Sunday, 18. February 2007

Please note that in order to install and run DarwinPorts on Mac OS X
you must have Apple's Xcode installed,
found at the Apple Developer site
or on your Mac OS X installation CDs/DVD.

For using tightvnc from darwinports on MAC OSX you also need X11
installed from your installation CDs/DVD.

DarwinPorts version 1.3.1 is available in binary form as a dmg disk
image for Tiger (Universal) or Panther both containing a pkg installer,
or version 1.3.2 in source form as either a tar.bz2 package
or a tar.gz one. Checksums for all these are contained here .

After installing all the software-packages mentioned above you have to update your darwinports repository. Enter the following command in a shell window: 

sudo port -d selfupdate

When the updates are done, do the following in a shell window: 

sudo port install tightvnc 

this will install tightvnc on your mac ;-)

after this we make a litte shell-script which will start the vncviewer in listen mode to use it with sc: 

mkdir ~/bin

touch ~/bin/sc.sh

echo '#!/bin/sh' > ~/bin/sc.sh

echo '/opt/local/bin/vncviewer -listen -encodings hextile' >> ~/bin/sc.sh

and make it executable

chmod +x ~/bin/sc.sh 

by clicking on the X11 Icon there will be opened a x-terminal. Type in the following command in the terminal-window:

~/bin/sc.sh

this will start the vnc-viewer in listen mode and you will be ready to receive sc-session from any windows remote computer which startet a singleclick application to your ip-adress. 

Letzte Aktualisierung ( Tuesday, 20. February 2007 )
 
Word oder Excel: Dokument ist schon einmal geöffnet PDF Drucken E-Mail
Geschrieben von Josef Schauer   
Friday, 24. November 2006

Beim öffnen von Word oder Excel Dokomenten kommt die Fehlermeldung: Dokument bereits schon einmal geöffnet…

Excel oder Word mit genauer Pfadangabe wie unten beschrieben ausführen:

"C:\Programme\Microsoft Office\Office\EXCEL.EXE" /regserver
(dabei die Anführungszeichen beachten)

Letzte Aktualisierung ( Saturday, 25. November 2006 )
 
Convert firmware.bin to firmware.trx PDF Drucken E-Mail
Geschrieben von Administrator   
Friday, 24. November 2006

The linksys firmwares can be too large for the tftp server to handle at boot_wait; it’s eaiser to log into openwrt, wget the binary into /tmp, remove the first 32 bytes of the bin to make a trx file.

dd if=firmware.bin of=firmware.trx bs=32 skip=1

and then write that directly to flash

mtd -r write firmware.trx linux .

Letzte Aktualisierung ( Saturday, 25. November 2006 )