Re: [exim] Exim 4.93 published.

Top Page
Delete this message
Reply to this message
Author: Lena
Date:  
To: exim-users
Subject: Re: [exim] Exim 4.93 published.
> From: Jeremy Harris

> > store_get() is not part of the API documented (in local_scan.h) as
> > being usable by local_scan and dlexpand code.
>
> I see however that it _is_ described as part of the API in the
> documentation chapter on local-scan. My apologies.
>
> I'll get that chapter touched up for the new interface


In my ${dlfunc module I use:

uschar *dir = expand_string(US "$spool_directory/grey");
size_t dir_len = strlen(dir);
uschar *filename = US store_get(dir_len+257);

Do I need to change that since 4.93 to this?

uschar *dir = expand_string(US "$spool_directory/grey");
size_t dir_len = strlen(dir);
uschar *filename = US store_get(dir_len+257, FALSE);