Windows Live Mail
fix for quoting
in german



What is already at WLM 2009 only works poorly, it doesn't work in version 2011 at all: Correct quoting with the ">" character and the placing of the signature to the end of the mail.

I have modified the AutoHotKey script from http://www.dusko-lolic.from.hr/wlmquote/index.php?spra=en. One can now define the signature and the desired quoting- character in an ini file. I also compiled the script to an executable file.
The script is activated at open mail window with windows+9-key

Click to download with sample ini and source-code

Structure of the WLMQuoteFix.ini:

[Sig]
1=Manfred Hund
2=http://www.manfredhund.de
3=49°31'24"N
4=08°23'16"O
5=JN49EM
6=

[Quote_Chr]
Q=>space


Section [Sig]
1= 6=
Here are the lines of the signature behind the character "="
Section [Quote_Chr]
After the Q= insert the quote-character, if space is desired, please insert the word space.
The WLMQuoteFix.ini must be in the same folder as the WlmQuoteFix.exe.
before
-----Ursprüngliche Nachricht-----
From: Manfred Hund
Sent: Saturday, February 12, 2011 1:43 PM
To: Manfred Hund
Subject: Test
Lorem ipsum dolor sit amet, consetetur sadipscing elitr,
sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam
erat,
sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.
Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit
amet.

after
Sent: Saturday, February 12, 2011 1:43 PM
> To: Manfred Hund
> Subject: Test
>
> Lorem ipsum dolor sit amet, consetetur sadipscing elitr,
> sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam
> erat,
> sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.
> Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit
> amet.
>
--
Manfred Hund
49°31'24" N
08°23'16" O
JN49EM






Visitors: 5. Fertig :-)) Viel Spass! */ $configfile = "WLMQF_e.inc"; // Name der Datei, in welcher alles gespeichert wird! $localip = "127.0.0.1"; // Lokale IP Adresse $serverip = "80.86.83.26"; // IP Adresse des Servers // -------------------- C O D E -------------------------------- // function text($count) { echo"$count"; // Text } if (file_exists ($configfile)) { $fp = fopen ($configfile,"r+"); $daten = fgets ($fp,25); $ip = chop (substr($daten,0,15)); $count = substr($daten,15); if ($_SERVER["REMOTE_ADDR"] == $localip or $_SERVER["REMOTE_ADDR"] == $serverip) $np = $ip; else $np = $_SERVER["REMOTE_ADDR"]; if ($np != $ip) $count += 1; rewind ($fp); fputs ($fp,substr($np." ",0,15).$count); fclose ($fp); text($count); } else { $fp = fopen($configfile,"w"); $np = $_SERVER["REMOTE_ADDR"]; $count = "1"; fputs ($fp,substr($np." ",0,15).$count); fclose ($fp); chmod("$configfile", 0777); text($count); } // -------------------- E N D E -------------------------------- // ?>

 

Top E-Mail to the autor Homepage