forked from cory/tildefriends
Backlog of miscellaneous fixes.
git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@3234 ed5197a5-7fde-0310-b194-c3ffbd925b24
This commit is contained in:
@ -4,7 +4,7 @@
|
||||
|
||||
terminal.print("Hello, world!");
|
||||
|
||||
let kServer = "rowlf.unprompted.com";
|
||||
let kServer = "localhost";
|
||||
|
||||
class Smtp {
|
||||
constructor() {
|
||||
@ -29,7 +29,7 @@ class Smtp {
|
||||
reject(error.message);
|
||||
}
|
||||
});
|
||||
socket.connect("localhost", 25).catch(reject);
|
||||
socket.connect(kServer, 25).catch(reject);
|
||||
});
|
||||
});
|
||||
}
|
||||
|
Reference in New Issue
Block a user