いつのころからか、mhc-syncすると X-SC-Priority: 0 というヘッダがついてしまうようになりました。 priority == 0 は "" としてしまって良いのではないでしょうか。
--- ruby-ext/lib/mhc-schedule.rb.orig Mon Oct 21 13:20:37 2002 +++ ruby-ext/lib/mhc-schedule.rb Mon Oct 21 13:20:37 2002 @@ -522,7 +522,11 @@ end def priority_as_string - return @priority .to_s + if @priority == 0 + return "" + else + return @priority .to_s + end end def set_priority(pri)