View Full Version : Problem with Network Administration
ANDY_Mail
22-Dec-2005, 08:11 AM
Hi EurekaLog Team,
I use EurekaLog and it's absolutly fine.
My problem is with Network Administrators.
Now I am in fight with 3 several companies.
They filter all *.tgz and *.png files in emails, and tell me I should change
to JPEG and ZIP formats.
Ohh, if I only could...
So I ask you, is it possibly (of course, it's software) respective want you
to change or optional (per configuration) change to zip and jpg files ?
Second question:
I have received delphi developer studio 2006.
So you know, i ask for support this version of delphi....
thanks
Andy
admin
10-Jan-2006, 06:41 PM
Hi,
ANDY_Mail wrote:
> Hi EurekaLog Team,
>
> I use EurekaLog and it's absolutly fine.
> My problem is with Network Administrators.
> Now I am in fight with 3 several companies.
> They filter all *.tgz and *.png files in emails, and tell me I should change
> to JPEG and ZIP formats.
> Ohh, if I only could...
>
> So I ask you, is it possibly (of course, it's software) respective want you
> to change or optional (per configuration) change to zip and jpg files ?
You can do this using an AttachedFilesRequest event like this:
//----------------------------------------------------------------------
procedure OnAttachedFilesRequest(
EurekaExceptionRecord: TEurekaExceptionRecord; AttachedFiles: TStrings);
var
n: integer;
NewFile: string;
procedure ConvertYourFile(SrcFileName: string; var NewFileName: string);
begin
// Convertion code HERE !!!
end;
begin
for n := 0 to (AttachedFiles.Count - 1) do
begin
if (CompareText(ExtractFileExt(AttachedFiles[n]), '.PNG') = 0) then
begin // This is a your convertion procedure.
ConvertYourFile(AttachedFiles[n], NewFile);
AttachedFiles[n] := NewFile;
end;
end;
end;
//----------------------------------------------------------------------
>
> Second question:
> I have received delphi developer studio 2006.
> So you know, i ask for support this version of delphi....
The EurekaLog 5.1 RC 1 with BDS 2006 support is available. Try it and
tell back to me yoru results, ok? :)
>
>
>
> thanks
>
> Andy
--
Best regards...
Fabio Dell'Aria.
----------------
http://www.eurekalog.com
Catch every BUG, every time!
vBulletin® v3.8.2, Copyright ©2000-2012, Jelsoft Enterprises Ltd.