-
Notifications
You must be signed in to change notification settings - Fork 265
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Arjan Scherpenisse
committed
May 13, 2016
1 parent
37da99c
commit b9528a7
Showing
1 changed file
with
12 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,12 @@ | ||
%% -*- mode: erlang; -*- | ||
|
||
{application, gen_smtp, | ||
[ | ||
{description, "A generic Erlang SMTP server/client framework"}, | ||
{vsn, "0.10.0"}, | ||
{modules, | ||
[ | ||
binstr, | ||
gen_smtp_client, | ||
gen_smtp_server, | ||
gen_smtp_server_session, | ||
mimemail, | ||
smtp_util, | ||
socket, | ||
smtp_server_example | ||
] | ||
}, | ||
{applications, [ | ||
kernel, | ||
stdlib, | ||
crypto, | ||
asn1, | ||
public_key, | ||
ssl | ||
]}, | ||
{registered, []}, | ||
{maintainers, ["Arjan Scherpenisse", "Marc Worrell", "Andrew Thompson"]}, | ||
{licenses, ["BSD 2-clause"]}, | ||
{links, [{"GitHub", "https://github.com/Vagabond/gen_smtp"}]} | ||
] | ||
}. | ||
{application,gen_smtp, | ||
[{description,"A generic Erlang SMTP server/client framework"}, | ||
{vsn,"0.10.0"}, | ||
{modules,[binstr,gen_smtp_client,gen_smtp_server, | ||
gen_smtp_server_session,mimemail,smtp_util,socket, | ||
smtp_server_example]}, | ||
{applications,[kernel,stdlib,crypto,asn1,public_key,ssl]}, | ||
{registered,[]}, | ||
{maintainers,["Arjan Scherpenisse","Marc Worrell", | ||
"Andrew Thompson"]}, | ||
{licenses,["BSD 2-clause"]}, | ||
{links,[{"GitHub","https://github.com/Vagabond/gen_smtp"}]}]}. |