Author Topic: Decoding postings that do not contain filenames  (Read 3203 times)

Offline peri

  • Contributor
  • ***
  • Posts: 3
Decoding postings that do not contain filenames
« on: March 12, 2008, 08:33:23 PM »
From time to time one comes across yyencoded postings do not contain filenames. Alt.Binz decodes any such posts to a file with the name "(null)". Now, if there is a multi-part posting of this type, all parts get decoded to the same name "(null)", and all but the final part are lost. I wonder if it would be possible to give parts of this type different names (Grabit uses "(null).1", "(null).2", etc), as this would help preserve all parts. When there is an accompanying set of par files, these can be used to restore the proper names.   

Offline Rdl

  • Administrator
  • *****
  • Posts: 3939
Re: Decoding postings that do not contain filenames
« Reply #1 on: March 12, 2008, 09:25:41 PM »
From time to time one comes across yyencoded postings do not contain filenames. Alt.Binz decodes any such posts to a file with the name "(null)". Now, if there is a multi-part posting of this type, all parts get decoded to the same name "(null)", and all but the final part are lost. I wonder if it would be possible to give parts of this type different names (Grabit uses "(null).1", "(null).2", etc), as this would help preserve all parts. When there is an accompanying set of par files, these can be used to restore the proper names.   

No, those posts contain (null) as a filename. Anyway it shouldn't owerwrite files. It should do exactly what you want (.1 .2 ...) PM me nzb or subject of the file in question

Offline Rdl

  • Administrator
  • *****
  • Posts: 3939
Re: Decoding postings that do not contain filenames
« Reply #2 on: March 24, 2008, 01:57:52 PM »
Mystery solved.

Poster used:
Code: [Select]
X-Newsreader: Newsbin Pro 5.0for posting.  :o

and by looking at the post:
Code: [Select]
=ybegin part=1  total=11 size=5015624 line=128 name=(null)we see that the name of the file is "(null)"

So, every file will be named (null) by altbinz. The problem is you have 'skip if file exists' checked under setup->download. So files ARE NOT overwritten but skipped. If you uncheck this option, you'll get exactly what you wanted ((null), (null).1, (null).2 ... ) (again files ARE NOT overwritten) and you can restore correct filenames with par2 files.

Offline peri

  • Contributor
  • ***
  • Posts: 3
Re: Decoding postings that do not contain filenames
« Reply #3 on: March 26, 2008, 07:53:48 PM »
Many thanks, would not have been able to think of this myself.