Which has the higher priority in your organization: Deploying a new database or securing the ones you already have?
Looking for a website, and resources, dedicated solely to securing Oracle databases? Check out DBSecWorx.
Purpose
Internal support package for UTL_MAIL
AUTHID
DEFINER
Dependencies
UTL_MAIL
V$PARAMETER
Documented
No
First Available
Not known
Security Model
Owned by SYS with EXECUTE granted to PUBLIC
Source
{ORACLE_HOME}/rdbms/admin/prvtmail.plb
GET_SMTP_SERVER
Returns the name of the configured SMTP server
utl_mail_internal.get_smtp_server(smtp_server OUT VARCHAR2);
DECLARE
sname VARCHAR2(30);
BEGIN
utl_mail_internal.get_smtp_server(sname);
dbms_output.put_line(sname);
END;
/