2009-11-01 Alexander Malysh <amalysh at kannel.org>
    * gw/numhash.c, gw/bb_smscconn.c: fixed possible crash by reloading
      white/blask lists via HTTP interface.

2009-10-22 Alexander Malysh <amalysh at kannel.org>
    * gw/dlr_mssql.c, gw/dlr_mysql.c, gw/dlr_oracle.c, gw/dlr_pgsql.c, gw/dlr_sdb.c:
      added warnings if DLR was not inserted/updated/deleted but no error occurs
      e.g. row to update not found.
      Thanks to Nikos Balkanas <nbal at amdtelecom.net> for this patch.
      [Msg-Id: <001801ca530c$43c24ac0$02b2a8c0@tardis>

2009-10-13 Alexander Malysh <amalysh at kannel.org>
    * gw/dlr_mysql.c: applied patch that fixes table name and field names that
      use reserved keywords.
      See http://dev.mysql.com/doc/refman/5.0/en/identifiers.html for details.
      Thanks to Vincent CHAVANIS <v.chavanis at telemaque.fr> for this patch.

2009-09-20 Alexander Malysh <amalysh at kannel.org>
    * gw/msg.c: fixed crash when wrong packet received on bearerbox port.
      Thanks to Michael Zervakis <michael at zervakis.com> for report.
      [Msg-Id: <4AB3A08C.3050408@zervakis.com>]

2009-09-17  Stipe Tolj  <stolj at kannel.org>
    * doc/userguide.xml: document the 'smsc = loopback' type.
    * gw/smscconn[_p].[ch]: add the loopback SMSC type to the internal 
      structures.
    * gw/smsc/smsc_loopback.c: add loopback SMSC type module.
      [Msg-Id: <4A4B9245.1030705@tolj.org>]

2009-09-04 Alexander Malysh <amalysh at kannel.org>
    * aclocal.m4, configure, configure.in, gw/dlr_mysql.c, gwlib/dbpool_mysql.c,
      test/test_dbpool.c: implemented select/update function calls for dbpool_mysql. This
      require mysql prepared statement support and therefore mysql version >= 4.1.
      Changed dlr_mysql to use these new function calls. This fixes #258.

2009-09-03 Alexander Malysh <amalysh at kannel.org>
    * gw/smsc/smpp_pdu.c: fixed memory leak.

2009-09-02 Alexander Malysh <amalysh at kannel.org>
    * doc/userguide/userguide.xml, gw/smsc/smpp_pdu.[ch], gw/smsc/smsc_smpp.c, test/drive_smpp.c,
      test/drive_smpp.conf, test/test_smsc.c: implemented smsc-id config option for smpp-tlv group.

2009-09-01 Alexander Malysh <amalysh at kannel.org>
    * gw/bearerbox.c: fixed memory leak

2009-08-31 Alejandro Guerrieri <aguerrieri at kannel.org>
    * gw/bb_smscconn.c, gw/bearerbox.c, gw/bearerbox.h,
      doc/userguide/userguide.xml: limit of 1M messages on outgoing queue limit
      documented. Small code cleanup.

2009-08-28 Andreas Fink <andreas at fink.org>
    * util/start-stop-daemon.c: fix compilation under MacOS X 10.6

2009-08-28 Alexander Malysh <amalysh at kannel.org>
    * gw/bb_smscconn.c: always initialize msgdata because too many parts in
      kannel expect msgdata non NULL.

2009-08-24 Alexander Malysh <amalysh at kannel.org>
    * gw/smsc/smsc_at.c: fixed timeout value passed to select. This should fix #514.

2009-08-12 Alexander Malysh <amalysh at kannel.org>
    * gw/smsc/smsc_at.[ch]: changes as follows:
      - changed at2_read_line to first try buffer and only then try to read from device.
        This should give us some speedup.
      - populate timeout to select. This fixes to high CPU usage.
      - more error handling.
      - variuos fixes.

2009-08-07 Alexander Malysh <amalysh at kannel.org>
    * gw/dlr_oracle.c: fixed table name in dlr_flush_oracle.

2009-07-28 Alexander Malysh <amalysh at kannel.org>
    * gw/numhash.[ch]: increase numhash precision from 9,18 to 19,38 on 32,64bit respectively.
      This is possible by using C99 standard type long long.

2009-07-21  Stipe Tolj  <stolj at kannel.org>
    * gw/smsc/smsc_smpp.c: fix compile error for --disable-ssl builds. NLC.
      Thanks to Gottfried Huber <gottfried.huber at siemens.com> for reporting.

2009-07-08 Alejandro Guerrieri <aguerrieri at kannel.org>
    * gw/bb_smscconn.c: fixed warnings on unused variables

2009-07-08 Alejandro Guerrieri <aguerrieri at kannel.org>
    * doc/userguide/userguide.xml, gw/bearerbox.c, gw/bearerbox.h, gw/bb_smscconn.c,
      gw/bb_http.c: improvements and bug fixes for the http admin interface:
      - added add-smsc and remove-smsc commands to dinamically add and remove smsc
        without restarting bearerbox
      - start-smsc reloads the configuration from disk
      - fixes bug on stop-smsc and start-smsc to properly report an error when a
	non-existing smsc name is stopped/started
      - fixes a bug when starting a group with 2 or more entries with the same id and
        different admin-id's

2009-07-07 Alexander Malysh <amalysh at kannel.org>
    * gw/smsc/smsc_smpp.c: merged smpp throttling branch that adds throughput handling
      without sleep for better ACK/DLR performance. Also changed:
      - added return codes to all sending and processing PDU functions
      - added extra error code when we receive malformed PDU
      - inlined smpp_msg_[create|destroy]
      - check validity against SMS_PARAM_UNDEFINED instead of hardcoded >= 0
      - added function to send generic NACK
      - check bind_xxx_resp for error 'already bound' and don't handle it as error
      - re-wrote io_thread function (this is the main loop) to take into accounts all
        possible conditions and throughput
      - implemented async shutdown sequence

2009-06-29 Alexander Malysh <amalysh at kannel.org>
    * gw/smsc/smsc_at.c: optimizing detection process on CME/CMS Errors (avoid to check
      if CMS when CME was detected). Renaming param value code -> errcode to make it
      more clean.
      Thanks to Vincent CHAVANIS <v.chavanis at telemaque.fr> for this patch.

2009-06-29 Alexander Malysh <amalysh at kannel.org>
    * gwlib/regex.c: fixed memory leak.
      Thanks to "Franck LAMASUTA" <f.lamasuta at cobratelematics.com> for patch.

2009-06-24  Stipe Tolj  <stolj at kannel.org>
    * acinclude.m4: fix unquoted definition warnings from bootstrap.sh run.
    * aclocal.m4: outcome of aclocal
    * configure[.in]: fix Fedora Core 11 (x86 and amd64) build for openssl
      detection. The static libssl.a library has been extracted from the
      openssl-devel package and is usually now not installed on a base system
      resulting in a failing build environment.

2009-06-23 Alexander Malysh <amalysh at kannel.org>
    * doc/userguide/userguide.xml, gw/smsc/smsc_http.c, gwlib/cfg.def: added 
      generic-foreign-id-regex config option that allows us to substract message
      id from body content by successful submission.
      Thanks to "Franck LAMASUTA" <f.lamasuta at cobratelematics.com> for this patch.

2009-06-22 Alejandro Guerrieri <aguerrieri at kannel.org>
    * gwlib/dbpool_mssql.c: various fixes:
        - allows execution of stored procedures on mssql_select
        - fixed memory leak on mssql_select
        - fixed double free on data deallocation

2009-06-22 Alexander Malysh <amalysh at kannel.org>
    * gw/smsc/smsc_at.c: applied patch that adds handling of +CME ERROR.
      Thanks to Vincent CHAVANIS <v.chavanis at telemaque.fr> for this patch.

2009-06-19 Alexander Malysh <amalysh at kannel.org>
    * gw/smsc/smsc_smpp.c: following changes:
        - added retrurn codes to all sending and processing PDU functions
        - dded extra errorcode when we receive malformed PDU
        - indents fixes

2009-06-19 Alexander Malysh <amalysh at kannel.org>
    * gw/smsc/smsc_smpp.c, doc/userguide/userguide.xml: added possibility to bind with SSL. 

2009-06-18 Alexander Malysh <amalysh at kannel.org>
    * gw/smsc/smsc_at.c: applied patch that adds more error descriptions.
      Thanks to Vincent CHAVANIS <v.chavanis at telemaque.fr> for this patch.

2009-06-18 Alexander Malysh <amalysh at kannel.org>
    * gwlib/http.c: removed max http server limit.

2009-06-16 Alexander Malysh <amalysh at kannel.org>
    * gwlib/http.c: increase max http servers from 32 to 100 and return error
      if max servers reached.

2009-06-16 Alexander Malysh <amalysh at kannel.org>
    * gwlib/http.c: indent fixes.

2009-06-15 Alexander Malysh <amalysh at kannel.org>
    * gwlib/http.c: fixed last commit that broke urls with port and query.

2009-06-11 Alexander Malysh <amalysh at kannel.org>
    * gwlib/http.c: fixed #503. we didn't handle right urls like http://host:port?query.

2009-06-10 Alexander Malysh <amalysh at kannel.org>
    * gw/smsc/smsc_http.c: fixed compiler warnings.

2009-06-10 Alejandro Guerrieri <aguerrieri at kannel.org>
    * test/.cvsignore utils/.cvsignore: ignoring test_date and decode_emimsg

2009-06-10 Alejandro Guerrieri <aguerrieri at kannel.org>
    * gw/smsc/smsc_http.c: removed the dlr-url field as a requirement for
    incoming dlrs on kannel smsc-type

2009-06-09 Alejandro Guerrieri <aguerrieri at kannel.org>
    * gw/smsc/smsc_http.c gwlib/cfg.def doc/userguide/userguide.xml: added
      support for mo parameters, return messages and codes configuration.

2009-06-09 Alexander Malysh <amalysh at kannel.org>
    * gw/ota_compiler.c: fixed #484 and reordered syncsettings to be in line
      with OTA spec.

2009-06-09 Alexander Malysh <amalysh at kannel.org>
    * gw/ota_compiler.c: revert of re-order INLINE attributs in oma_ota_attributes
       because code assume VALUE INLINE to be last in table.
       Thanks to "Nikos Balkanas" <nbalkanas at gmail.com> for this patch.

2008-10-22  Stipe Tolj  <stolj at kannel.org>
    * gw/ota_compiler.c: re-order INLINE attributs in oma_ota_attributes struct
          to fit the order in the spec tables. NLC.

2009-06-04  Stipe Tolj  <stolj at kannel.org>
    * gw/smsc/smsc_smpp.c: add the SMPP username as msg->sms.account value, so
      we can use it in the urltrans layer with escape code '%o'. This makes
      the semantics for MT/MO direction similar.
      
2009-05-25  Stipe Tolj  <stolj at kannel.org>
    * doc/userguide/userguide.xml: fixing bug 'document type does not allow element 
      "PARA" here; missing one of "FOOTNOTE", "MSGTEXT", "CAUTION", "IMPORTANT", 
      "NOTE", "TIP", "WARNING", "BLOCKQUOTE", "INFORMALEXAMPLE" start-tag'.
    
2009-05-20 Alexander Malysh <amalysh at kannel.org>
    * gw/smsc/smsc_smpp.c: some SMSCs have submit/done date with seconds. Now we
      can parse it sscanf way.

2009-05-20 Alexander Malysh <amalysh at kannel.org>
    * doc/userguide/userguide.xml, gw/smsc/smsc_smpp.c, gw/smsbox.c, gw/dlr.h:
      added support for intermediate notification.
      Thanks to Alejandro Guerrieri <aguerrieri at kannel.org> for this patch.

2009-05-20 Alexander Malysh <amalysh at kannel.org>
    * doc/userguide/userguide.xml: adding clarification that user can provide own
      message id's to the dlr-url.
      Thanks to "Arne K. Haaje" <arne at drlinux.no> for this patch.
 
2009-05-20 Alexander Malysh <amalysh at kannel.org>
    * gwlib/octstr.c: fixed PANIC when we try to send empty message body.

2009-05-06 Alexander Malysh <amalysh at kannel.org>
    * gwlib/dbpool_oracle.c: fixed compiler warnings.

2009-05-06 Alexander Malysh <amalysh at kannel.org>
    * doc/userguide/userguide.xml, gw/bb_smscconn.c, gw/smscconn.[ch], gw/smscconn_p.h
      gwlib/cfg.def: added new config option to smsc group 'smsc-admin-id'. This is
      used in admin interface to shutdown/start/restart smsc links when smsc-id is
      equal due to loadbalancing.
      Thanks to Alejandro Guerrieri <aguerrieri at kannel.org> for this patch.

2009-05-05  Stipe Tolj  <stolj at kannel.org>
    * gw/msg.[ch], gw/msg-decl.h: remove the semicolon references from the 
      macro definition file for the sake or usability of the macro in other
      places. NLC.

2009-05-04 Alexander Malysh <amalysh at kannel.org>
    * aclocal.m4, configure, configure.in, gw-config.h.in, gw/dlr.c,
      gw/dlr_p.h, gwlib/cfg.def, gwlib/dbpool.[ch], doc/userguide/userguide.xml:
      added MSSQL support to DBPool and DLR.
      Thanks to Alejandro Guerrieri <aguerrieri at kannel.org> for this patch.

2009-05-04 Alexander Malysh <amalysh at kannel.org>
    * gw/meta_data.[ch]: Extends meta_data_set_values function to be able to add
      new values without replacing the whole dict.
    * gw/smsc/smsc_smpp.c: return DLR error in dlr_err metadata parameter.
      Thanks to Alejandro Guerrieri <aguerrieri at kannel.org> for this patch.

2009-04-30 Alexander Malysh <amalysh at kannel.org>
    * utils/mtbatch.c: fixed freeze at the shutdown.

2009-04-30 Alexander Malysh <amalysh at kannel.org>
    * utils/mtbatch.c: send the whole message to bearerbox instead of splitted
      parts. Splitting is done in bearerbox.

2009-04-17 Alexander Malysh <amalysh at kannel.org>
    * aclocal.m4, configure, configure.in: fixed FeeBSD compilation options.
      Use -lpthread instead of -lkse. See http://www.FreeBSD.org/kse/.

2009-04-17 Alexander Malysh <amalysh at kannel.org>
    * gwlib/charset.c, gwlib/date.c: fixed compiler warnings.
      Thanks to Vincent CHAVANIS <v.chavanis at telemaque.fr> for pointing
      to it and partially fix.

2009-04-16  Stipe Tolj  <stolj at kannel.org>
    * utils/mtbatch.c: changed email reference. NLC.
    * gwlib/socket.c: re-inforced preamble, which was changed acidently
      in the previous patchset. NLC.

2009-04-15 Alexander Malysh <amalysh at kannel.org> 
    * gwlib/socket.c: implemented support for multi-IP.

2009-04-15 Alexander Malysh <amalysh at kannel.org> 
    * gw/smsc/smsc_at.c: fixed error path that we didn't close device.

2009-04-15 Alexander Malysh <amalysh at kannel.org> 
    * utils/mtbatch.c: applied patch that add DLR support for mtbatch.
      Thanks to Vincent CHAVANIS <v.chavanis at telemaque.fr> for this patch.

2009-04-14 Alexander Malysh <amalysh at kannel.org>
    * test/decode_emimsg.c: moved to utils.
      Thanks to Vincent CHAVANIS <v.chavanis at telemaque.fr> for this patch.

2009-04-07 Alexander Malysh <amalysh at kannel.org>
    * gwlib/gwmem.h: fixed compiler warnings about strdup redefine.

2009-04-06  Stipe Tolj  <stolj at kannel.org>
    * gwlib/gwmem.h: fixed typo from previous commit set. NLC.
    
2009-04-06 Alexander Malysh <amalysh at kannel.org>
    * gwlib/gwmem-check.c, gwlib/gwmem-native.c, gwlib/gwmem.h: applied patch
      that adds gw_calloc function and speedup a gw_strdup.
      Thanks to "Nikos Balkanas" <nbalkanas at gmail.com> for this patch.

2009-04-03 Alexander Malysh <amalysh at kannel.org>
    * utils/mtbatch.c: applied patch that fixes #495.
      Thanks to Vincent CHAVANIS <v.chavanis at telemaque.fr> for this patch.

2009-04-02 Alexander Malysh <amalysh at kannel.org>
    * gwlib/thread.[ch]: fixed compilation failure if compiled with
      '--enable-mutex-stats'.
      Thanks to "Nikos Balkanas" <nbalkanas at gmail.com> for report.

2009-04-02 Alexander Malysh <amalysh at kannel.org>
    * gw/smsc/smsc_smpp.c: fixed issue that return code 1 of conn_write
      that indicated still data buffered but no error was interpreted
      as error.
      Thanks to "Raf Coremans" <raco at mach.com> who spotted and reported
      this issue.

2009-04-01 Alexander Malysh <amalysh at kannel.org>
    * gw/smsc/smsc_smpp.c: handle partial SMPP v3.4 DLR support, when
      receipted_message_id received but not the dlrstat.

2009-03-30 Alexander Malysh <amalysh at kannel.org>
    * gwlib/http.c: applied patch that fixes octsr_copy length.
      Thanks to Vincent CHAVANIS <v.chavanis at telemaque.fr> for this patch.

2009-03-30 Alexander Malysh <amalysh at kannel.org>
    * gw/wap-appl.c: applied patch that fixes possible infinite loop.
      Thanks to "Nikos Balkanas" <nbalkanas at gmail.com> for this patch.

2009-03-29 Alexander Malysh <amalysh at kannel.org>
    * gwlib/http.c: applied patch that fixes octsr_copy length.
      Thanks to "Nikos Balkanas" <nbalkanas at gmail.com> for this patch.
      [Msg-Id: <002b01c9af01$c06655d0$02b2a8c0@tardis>]

2009-03-15 Alexander Malysh <amalysh at kannel.org>
    * gwlib/cfg.c: fixed compilation error introduced by Stipe.

2009-03-14  Stipe Tolj  <stolj at kannel.org>
    * gwlib/cfg.c: fix segfault on sparc-solaris10 and possibly various other
      systems in case of a failing lstat() call and further undefined 
      processing of the variable outcome.
      
2009-03-14  Stipe Tolj  <stolj at kannel.org>
    * config.rpath: touched file to surpress the configure error.
    * configure[.in], aclocal.m4: added '--enable-auto-import' linker option
      for the Cygwin 1.x platform to avoid warnings at link time.
      
2009-03-14  Stipe Tolj  <stolj at kannel.org>
    * Makefile.in: fix missing -liconv flag for gw-config's --libs output. We
      rather use the Makefile variable then the configure substitution, so we
      get all library flags handled.
      
2009-03-13  Stipe Tolj  <stolj at kannel.org>
    * gwlib/date.c, gwlib/dbpool_sqlite3.c, test/test_store_dump.c: fixed 
      minor compiler warnings. NLC.
    * acinclude.m4: changed header to reflect the correct file name. NLC.
    
2009-03-13 Alexander Malysh <amalysh at kannel.org>
    * .cvsignore, Makefile.in, acinclude.m4, aclocal.m4, bootstrap.sh,
      configure, configure.in, gw-config.h.in, gwlib/charset.c: Use already
      defined in gettext AM_ICONV macro to detect and declare iconv. This
      fixes warning about const declaration.
      This macro defined in aclocal and therefore I renamed aclocal.m4 to
      acinclude.m4 and added bootstrap.sh. Please always use bootstrap.sh to
      create new configure script!

2009-03-08  Stipe Tolj  <stolj at kannel.org>
    * install-sh: use a more recent version taken from automake-1.10, in order
      to support wildcard filenames to install. This script is used in case
      the configure run finds no other BSD-compatible install program, i.e.
      required for Solaris 10 that has no such thing.

2009-03-02  Stipe Tolj  <stolj at kannel.org>
    * gw/bb_boxc.c: minor source re-formatting. NLC.
    
2009-03-02 Alexander Malysh <amalysh at kannel.org>
    * gwlib/charset.c: try to convert with iconv harder.

2009-03-01 Alexander Malysh <amalysh at kannel.org>
    * configure.in, configure: added openjade to search.
      Added /sw /opt/local to search path for docbook.

2009-03-01 Alexander Malysh <amalysh at kannel.org>
    * gw/bb_boxc.c: applied patch that fixes handling of multiple boxes with
      equal name.
      Thanks to Ben Suffolk <ben at vanilla.net> for the initial patch.
      [Msg-ID: <C5DF9E3A-61B5-467D-91E0-0844B2AB4645@vanilla.net>]

2009-02-16  Stipe Tolj  <stolj at kannel.org>
    * doc/userguide/userguide.xml: adding documetation section for the
      command line switch for showing the version.
    * gw/shared.[ch]: moved the version printing related public functions.
    * gwlib/utils.[ch]: places the printing functions here and adding the
      --version command line switch to the general command line intrpreting
      function.
      [Msg-Id: <4996DF94.5010505@tolj.org>]
      
2009-02-15 Alexander Malysh <amalysh at kannel.org>
    * test/test_octstr_format.c: fixed compiler warnings.
      Thanks to Vincent CHAVANIS <v.chavanis at telemaque.fr> for patch.

2009-02-15 Alexander Malysh <amalysh at kannel.org>
    * gw/meta_data.c: fixed compiler warnings.
      Thanks to Vincent CHAVANIS <v.chavanis at telemaque.fr> for patch
      and to "Nikos Balkanas" <nbalkanas at gmail.com>.

2009-02-15 Alexander Malysh <amalysh at kannel.org>
    * gw/smsc/smsc_at.c: applied patch that includes more speed cases,
      and allows the default to be any speed (rather than 9600) *if* the OS
      behaves like OSX where B9600 == 9600 (not so under Linux).
      Thanks to Paul Bagyenda <bagyenda at dsmagic.com> for this patch.
      [Msg-ID: <48DB2FB0-2D8B-4FC0-A00B-A33E36DAA45D@dsmagic.com>]

2009-02-10 Alexander Malysh <amalysh at kannel.org>
    * checks, gw/pushkannel.conf, gw/smskannel.conf, gw/wapkannel.conf: fixes
       for make check. It works now.
       Thanks to Vincent CHAVANIS <v.chavanis at telemaque.fr> for patch.

2009-02-10 Alexander Malysh <amalysh at kannel.org>
    * wap/wsp_headers.c: fixes wsp_pack_text -> wsp_pack_quoted_text.
      Thanks to Vincent CHAVANIS <v.chavanis at telemaque.fr> for patch.

2009-02-10 Alexander Malysh <amalysh at kannel.org>
    * test/*: various fixes.
      Thanks to Vincent CHAVANIS <v.chavanis at telemaque.fr> for patch.

2009-02-10 Alexander Malysh <amalysh at kannel.org>
    * wap/cookies.c: applied patch that fixes cookies parsing.
      Thanks to "Nikos Balkanas" <nbalkanas at gmail.com> for this patch.
      [Msig-ID: <006201c9865e$bd574230$02b2a8c0@tardis>]

2009-02-10 Alexander Malysh <amalysh at kannel.org>
    * test/test_date.c: added test to test gwlib/date.

2009-02-10 Alexander Malysh <amalysh at kannel.org>
    * gwlib/date.c: applied patch that corrects parsing of iso date
      for YYYMMDDTHHMMSS format.
      Thanks to Paul Bagyenda <bagyenda at dsmagic.com> for this patch.
      [Msg-ID: <F438D467-5767-40D9-898E-C015DDF7923F@dsmagic.com>]

2009-02-06 Alexander Malysh <amalysh at kannel.org>
    * test/test_hmac.c, test/test_md5.c, test/test_octstr_dump.c, test/test_regex.c:
      applied patch that fixes segfaults.
      Thanks to Vincent CHAVANIS <v.chavanis at telemaque.fr> for patch.
      [Msg-ID: <498C3EE0.4030408@telemaque.fr>]

2009-02-06 Alexander Malysh <amalysh at kannel.org>
    * gw/smsc/smsc_at.c: fixed some memory leaks.

2009-02-04  Stipe Tolj  <stolj at kannel.org>
    * README: add the documentation requirement packages for Fedora Core too.
    
2009-02-04  Stipe Tolj  <stolj at kannel.org>
    * test/test_octstr_format.c: fix intendion according to our CodingStyle
      policy. NLC.

2009-01-29 Alexander Malysh <amalysh at kannel.org>
    * gw/smsc/smsc_smpp.c: this patch should fix #460.
      Changed %lu -> %llu in octstr_format call when strtoll is used.

2009-01-29 Alexander Malysh <amalysh at kannel.org>
    * gwlib/octstr.c, test/test_octstr_format.c: applied patch that adds
      support for %llu, %llx etc. to octstr_format. Also added test.
      Thanks to Nikos Balkanas <nbalkanas at gmail.com> for patch.
      [Msg-Id: <7f4386bc0901290255y3f8f44feya6132b138b0b6003@mail.gmail.com>]

2009-01-26  Stipe Tolj  <stolj at kannel.org>
    * gwlib/http.c: fix the recover_absolute_uri() to handle HTTPS connections
      to port 80 too, via applying the port 80 to the URL scheme if the
      connection IS SSL-enabled. Thanks to Martin for the vetoing.
      [Msg-Id: <92cf04420901251835k5f0636acueafdfd17f8147355@mail.gmail.com>]
       
2009-01-25  Stipe Tolj  <stolj at kannel.org>
    * gwlib/http.c: add function recover_absolute_uri() to handle partly
      incomplete absoluteURI values in redirect HTTP headers.
      [Msg-Id: <4979FB14.2000600@tolj.org>]
  
2009-01-21 Alexander Malysh <amalysh at kannel.org>
    * utils/makedist: added sha1 digest for packages.

2009-01-21 Alexander Malysh <amalysh at kannel.org>
    * gw/smsc/smsc_smpp.c: fixed panic due to the unsupported %llu
      format in octstr_format.

2009-01-14 Alexander Malysh <amalysh at kannel.org>
    * doc/userguide/userguide.xml, gw/bb_alog.c, gw/bb_smscconn.c,
      gw/meta_data.[ch],gw/msg-decl.h,gw/smsbox.c,gw/smsc/smpp_pdu.[ch],
      gw/smsc/smsc_http.c,gw/smsc/smsc_smpp.c,gw/urltrans.c,gwlib/cfg.def,
      test/drive_smpp.c,test/drive_smpp.conf: merged meta-data branch.

2009-01-13  Stipe Tolj  <stolj at kannel.org>
    * test/test_http_server.c: fixing Alex's previous committ clash. NLC.

2009-01-13 Alexander Malysh <amalysh at kannel.org>
    * test/test_http_server.c: fixed memleak.

2009-01-12  Stipe Tolj  <stolj at kannel.org>
    * Making stable release 1.4.2.
