Method
EDataServerSourcemail_signature_load_sync
since: 3.6
Declaration [src]
gboolean
e_source_mail_signature_load_sync (
ESource* source,
gchar** contents,
gsize* length,
GCancellable* cancellable,
GError** error
)
Description [src]
Loads a signature from the signature file for source, which is
given by e_source_mail_signature_get_file(). The signature contents
are placed in contents, and length is set to the size of the contents
string. The contents string should be freed with g_free() when no
longer needed.
If the signature file is executable, it will be executed and its output captured as the email signature content. If the signature file is not executable, the email signature content is read directly from the file.
Available since: 3.6
Parameters
contents-
Type:
gchar**Return location for the signature content.
The argument will be set by the function. The caller of the method takes ownership of the returned data, and is responsible for freeing it. The value is a NUL terminated UTF-8 string. length-
Type:
gsize*Return location for the length of the signature content, or
NULLif the length is not needed.The argument will be set by the function. The argument can be NULL. cancellable-
Type:
GCancellableOptional
GCancellableobject, orNULL.The argument can be NULL.The data is owned by the caller of the method. error-
Type:
GError **The return location for a recoverable error.
The argument can be NULL.If the return location is not NULL, then you must initialize it to aNULLGError*.The argument will be left initialized to NULLby the method if there are no errors.In case of error, the argument will be set to a newly allocated GError; the caller will take ownership of the data, and be responsible for freeing it.