Renamed config file to EMAIL.CFG. Added blank 800K ProDOS image.

This commit is contained in:
Bobbi Webber-Manners 2020-07-15 17:20:13 -04:00
parent 1f338e98ca
commit caf217a29b
4 changed files with 18 additions and 6 deletions

View File

@ -45,7 +45,7 @@ TCP =\
tweet65 \
pop65-slow
bin: wget65.bin pop65.bin smtp65.bin email.bin rebuild.bin
bin: wget65.bin pop65.bin smtp65.bin email.bin rebuild.bin edit.bin
wget65.bin: w5100.c w5100_http.c linenoise.c
wget65.bin: IP65LIB = ../ip65/ip65.lib
@ -134,7 +134,7 @@ ip65.d64: prg
$(C1541) -attach $@ -write tweet65.prg tweet65,p
ip65.dsk: bin
cp ../build/prodos.dsk $@
cp ../build/800k.po $@
java -jar $(AC) -as $@ date65 < date65.bin
java -jar $(AC) -p $@ date65.system sys < $(CC65)/apple2enh/util/loader.system
# java -jar $(AC) -as $@ hfs65 < hfs65.bin
@ -152,8 +152,11 @@ ip65.dsk: bin
java -jar $(AC) -p $@ email.system sys < $(CC65)/apple2enh/util/loader.system
java -jar $(AC) -as $@ rebuild < rebuild.bin
java -jar $(AC) -p $@ rebuild.system sys < $(CC65)/apple2enh/util/loader.system
java -jar $(AC) -as $@ edit < edit.bin
java -jar $(AC) -p $@ edit.system sys < $(CC65)/apple2enh/util/loader.system
java -jar $(AC) -p $@ tzone.txt txt < tzone.txt
java -jar $(AC) -p $@ pop65.cfg txt < pop65.cfg
java -jar $(AC) -p $@ email.cfg txt < email.cfg
java -jar $(AC) -p $@ test.txt txt < test.txt
ip65.atr: com
mkdir atr

View File

@ -156,12 +156,12 @@ void spinner(void) {
}
/*
* Read parms from POP65.CFG
* Read parms from EMAIL.CFG
*/
void readconfigfile(void) {
fp = fopen("POP65.CFG", "r");
fp = fopen("EMAIL.CFG", "r");
if (!fp)
error(ERR_FATAL, "Can't open config file POP65.CFG");
error(ERR_FATAL, "Can't open config file EMAIL.CFG");
fscanf(fp, "%s", cfg_server);
fscanf(fp, "%s", cfg_user);
fscanf(fp, "%s", cfg_pass);

9
apps/email.cfg Normal file
View File

@ -0,0 +1,9 @@
192.168.10.2
pi
passwordgoeshere
NODELETE
192.168.10.2
apple2.local
/IP65/E
bobbi.8bit@gmail.com

BIN
build/800k.po Normal file

Binary file not shown.