SimpleMail für Windows - DE


Ich brauche manchmal E-Mails von Windows-Befehlszeile zu senden. ich konnte icht finden entsprechende einfache sendmail Dienstprogramm und entwickelte eigene einfaches Werkzeug. Es soll mindestens .NET 2.0 auf dem System installiert werden.
SimpleMail ist hier erhältlich


Verbrauch:
simplemail.exe [-a Datei] [-F Datei] [-H Datei] [-s Betreff] [-b E-mail] [-c E-Mail] E-mail [...]


OPTIONS
-a Datei
Anfügen einer Datei an Ihre Nachricht mit MIME.


-b Adresse
Geben Sie ein Blind-Carbon-Copy (BCC) Empfänger


-c Adresse
Geben Sie eine Carbon-Copy (CC) Empfänger


-F Konfig
Geben Sie eine Initialisierungsdatei zu lesen


-h Hilfe anzeigen.


-H Entwurf
Geben Sie einen Entwurf Datei, die Header und Body enthält
zu verwenden, um eine Nachricht zu senden.


-s Betreff
Geben Sie den Betreff der Nachricht.


-v Version anzeigen.




Wenn Sie schauen, wie SMTP (Simple Mail Transfer Protocol) in Windows installieren Antwort ist hier.

SimpleMail para Windows - ES

Necesito a veces para enviar correo electrónico desde la línea de comandos de Windows. No he podido encontrar utilidad adecuada sendmail simple y sencilla herramienta se ha desarrollado propia. Se requiere por lo menos NET 2.0 instalado en el sistema.
SimpleMail está disponible aquí.

Uso:
simplemail.exe [-a archivo] [-F archivo] [-H archivo] [-s asunto ] [-b destinatario] [-C destinatario] destinatario[...]


OPCIONES
-a archivo
Adjuntar un archivo a su mensaje utilizando MIME.


-b dirección
Especifique un ciego-en copia (BCC) destinatario


-c dirección
Especifique una copia (CC) destinatario


-F config
Especificar un archivo de inicialización de leer


-h Mostrar ayuda.


-H proyecto de texto 
Especifique un archivo que contiene el proyecto de cabecera y el cuerpo utilizar para enviar un mensaje.


-s asunto del mensaje
Especifique el asunto del mensaje.


-v Muestra la versión.


Si usted está buscando cómo instalar SMTP (Simple Mail Transfer Protocol) en Windows respuesta está aquí.

FunctionList and perl subs

I was not really happy how  functionlist plugin lists perl subs by default.


Original settings


I have modified rules as you can see on picture below.
Modified regexp

Here is assumed, that sub word stays at the begin of string! (^sub).
You can remove ^ to accept all free-standing subs.

Notepad++ 5.8.3 with FunctionList on Windows 7

Many thanks for advice Ariadie and Claude!
Notepad++ 5.8.3 works perfect with FunctionList_2_1 UNICODE.

Please note that setting on Windows 7 is saved by path
%APPDATA%\Notepad++\plugins\config\FunctionListRules.xml
So you can always backup or restore your personal settings.

Enjoy it!

Specified cast is not valid at System.Linq.Enumerable. MoveNext

Yes, it's true. Pseudo-code below will not work with buildin types (int, long, double and so on) with InvalidCastException.


int[] a = new int[]{ 1, 2, 3 };

IEnumerable<double> d = a.Cast<double>();


foreach (double x in d) {

System.Console.WriteLine(x);

}
To resolve the issue you should rewrite second string with explicit cast as below

IEnumerable<double> d = a.Select(i => (double)i);

apache: .js is not executable; ensure interpreted scripts have "#!"

If appears in apache log the following message

apache: .js is not executable; ensure interpreted scripts have "#!"

you should modify config file and use Alias instead of ScriptAlias


Alias /appl/ "C:/xampp/appl/"
<Directory>
AllowOverride All
Options Indexes MultiViews +ExecCGI
DirectoryIndex index.php
Order allow,deny
Allow from all
</Directory>

How to install DBD-ODBC on Windows

I have installed XAMPP and could not install DBD-ODBC module to access MSSQL Server.
It appeared error message
ppm install failed: Can't find any package that provides DBI for DBD-ODBC
or
Can't locate object method "rvalidate" via package...

Quick research exposed that PPD file format was changed.

You can download updated version here.
or just execute from command line

ppm.bat install http://andronova.de/DBD-ODBC-1.24.ppd

Please note: solution works only with ActiveState Perl 5.10 x86

Asterisk AST_SORCERY function

 AST_SORCERY gets a field from a sorcery object. Sorcery is always created for PJSIP aors, endpoints and identifies in asterisk. It allows y...