Changeset 4002 for trunk/auto-reply

Show
Ignore:
Timestamp:
01/21/05 09:45:08 (4 years ago)
Author:
emostar
Message:

Patch submitted to SF about keeping these as options. Closes a bug as well.

Location:
trunk/auto-reply
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/auto-reply/licq_autoreply.conf

    r3649 r4002  
    4141SendThroughServer = 1 
    4242 
     43# Same as -e on Licq startup. 
     44# check "licq -p autoreply -- -h" 
     45StartEnabled = 1 
     46 
     47# Same as -d on Licq startup. 
     48# check "licq -p autoreply -- -h" 
     49DeleteMessage = 1 
     50 
    4351# Here is a simple example which will bounce the event 
    4452# right back to the user: 
  • trunk/auto-reply/src/autoreply.cpp

    r3757 r4002  
    8686  conf.ReadBool("AbortDeleteOnExitCode", m_bAbortDeleteOnExitCode, false); 
    8787  conf.ReadBool("SendThroughServer", m_bSendThroughServer, true); 
     88  conf.ReadBool("StartEnabled", m_bEnabled, false); 
     89  conf.ReadBool("DeleteMessage", m_bDelete, false); 
    8890  conf.CloseFile(); 
    8991