Ok, for gprs i think we need a script (i don't know how to do it) to reset the counter automatically every month. What do you think about this?.
gconftool-2 -R /cellui/settings/datacounter
#!/bin/sh # reset the data counter on a selected reset day reset_day="05" # change to your needs day_of_month=$(date +"%d") datetime=$(date +"%d.%m.%Y.%s") if [ $reset_day = $day_of_month ] then gconftool -s --type string /cellui/settings/datacounter/transfer/gprs_home_tx_bytes "0" gconftool -s --type string /cellui/settings/datacounter/transfer/gprs_home_rx_bytes "0" gconftool -s --type string /cellui/settings/datacounter/general/gprs_home_last_reset $datetime fi